forked from jclouds/legacy-jclouds
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jclouds#1455 from jclouds/fix-trmk
Fix trmk
- Loading branch information
Showing
4 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
123 changes: 123 additions & 0 deletions
123
...ders/trmk-ecloud/src/test/java/org/jclouds/trmk/ecloud/TerremarkECloudClientMockTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
/** | ||
* Licensed to jclouds, Inc. (jclouds) under one or more | ||
* contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. jclouds licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.jclouds.trmk.ecloud; | ||
|
||
import static com.google.common.util.concurrent.MoreExecutors.sameThreadExecutor; | ||
import static org.jclouds.Constants.PROPERTY_MAX_RETRIES; | ||
import static org.testng.Assert.assertEquals; | ||
|
||
import java.io.IOException; | ||
import java.net.URL; | ||
import java.util.Properties; | ||
import java.util.Set; | ||
import java.util.concurrent.BlockingQueue; | ||
import java.util.concurrent.LinkedBlockingQueue; | ||
import java.util.concurrent.atomic.AtomicReference; | ||
|
||
import org.jclouds.ContextBuilder; | ||
import org.jclouds.concurrent.config.ExecutorServiceModule; | ||
import org.testng.annotations.Test; | ||
|
||
import com.google.common.collect.ImmutableSet; | ||
import com.google.inject.Module; | ||
import com.google.mockwebserver.MockResponse; | ||
import com.google.mockwebserver.MockWebServer; | ||
import com.google.mockwebserver.QueueDispatcher; | ||
import com.google.mockwebserver.RecordedRequest; | ||
|
||
/** | ||
* | ||
* @author Adrian Cole | ||
*/ | ||
@Test(singleThreaded = true) | ||
public class TerremarkECloudClientMockTest { | ||
|
||
private static final Set<Module> modules = ImmutableSet.<Module> of( | ||
new ExecutorServiceModule(sameThreadExecutor(), sameThreadExecutor())); | ||
|
||
static TerremarkECloudClient mockTerremarkECloudClient(String uri) { | ||
Properties overrides = new Properties(); | ||
overrides.setProperty(PROPERTY_MAX_RETRIES, "1"); | ||
return ContextBuilder.newBuilder("trmk-ecloud") | ||
.credentials("user", "password") | ||
.endpoint(uri) | ||
.overrides(overrides) | ||
.modules(modules) | ||
.build(TerremarkECloudApiMetadata.CONTEXT_TOKEN).getApi(); | ||
} | ||
|
||
String versionXML = "<SupportedVersions><VersionInfo><Version>0.8b-ext2.8</Version><LoginUrl>URLv0.8/login</LoginUrl></VersionInfo></SupportedVersions>"; | ||
|
||
@Test | ||
public void testLoginSetsContentLength() throws IOException, InterruptedException { | ||
MockWebServer server = new MockWebServer(); | ||
AtomicReference<URL> url = setURLReplacingDispatcher(server); | ||
server.enqueue(new MockResponse().setResponseCode(200).setBody(versionXML)); | ||
server.enqueue(new MockResponse().setResponseCode(200) | ||
.addHeader("x-vcloud-authorization", "cookie") | ||
.setBody("<OrgList />")); | ||
server.play(); | ||
url.set(server.getUrl("/")); | ||
|
||
TerremarkECloudClient api = mockTerremarkECloudClient(url.get().toString()); | ||
|
||
try { | ||
api.listOrgs(); | ||
} finally { | ||
RecordedRequest getVersions = server.takeRequest(); | ||
assertEquals(getVersions.getRequestLine(), "GET /versions HTTP/1.1"); | ||
|
||
RecordedRequest login = server.takeRequest(); | ||
assertEquals(login.getRequestLine(), "POST /v0.8/login HTTP/1.1"); | ||
assertEquals(login.getHeader("Authorization"), "Basic dXNlcjpwYXNzd29yZA=="); | ||
assertEquals(login.getHeader("Content-Length"), "0"); | ||
|
||
server.shutdown(); | ||
} | ||
} | ||
|
||
/** | ||
* there's no built-in way to defer evaluation of a response body, hence this | ||
* method, which allows us to send back links to the mock server. | ||
*/ | ||
private AtomicReference<URL> setURLReplacingDispatcher(MockWebServer server) { | ||
final AtomicReference<URL> url = new AtomicReference<URL>(); | ||
|
||
final QueueDispatcher dispatcher = new QueueDispatcher() { | ||
protected final BlockingQueue<MockResponse> responseQueue = new LinkedBlockingQueue<MockResponse>(); | ||
|
||
@Override | ||
public MockResponse dispatch(RecordedRequest request) throws InterruptedException { | ||
MockResponse response = responseQueue.take(); | ||
if (response.getBody() != null) { | ||
String newBody = new String(response.getBody()).replace("URL", url.get().toString()); | ||
response = response.setBody(newBody); | ||
} | ||
return response; | ||
} | ||
|
||
@Override | ||
public void enqueueResponse(MockResponse response) { | ||
responseQueue.add(response); | ||
} | ||
}; | ||
server.setDispatcher(dispatcher); | ||
return url; | ||
} | ||
} |