mirror of
https://github.com/apache/jclouds.git
synced 2025-02-17 15:35:44 +00:00
Merge branch 'master' of https://github.com/dmitri-b/jclouds
* 'master' of https://github.com/dmitri-b/jclouds: non-working live tests is disabled (they are not working due to the issues with OpenStack) non-working live tests is disabled (they are not working due to the issues with OpenStack) incorrect imports fix comments for failing live tests fixes in change password test more fixes in live tests more debug logging timeout for tests is increased live tests bug fixes comments for JschSshClinet bug fix JschSshClinet bug fix for exec method key file for live tests is renamed additional json test is moved to apis/nova additional json test keys for live tests are loaded from the classpath
This commit is contained in:
commit
5b10d5d0f8
0
antcontrib/samples/javaoverssh/README.txt
Executable file → Normal file
0
antcontrib/samples/javaoverssh/README.txt
Executable file → Normal file
0
apis/atmos/src/test/resources/log4j.xml
Executable file → Normal file
0
apis/atmos/src/test/resources/log4j.xml
Executable file → Normal file
0
apis/byon/src/test/resources/log4j.xml
Executable file → Normal file
0
apis/byon/src/test/resources/log4j.xml
Executable file → Normal file
0
apis/cloudfiles/src/main/java/org/jclouds/cloudfiles/CDNManagement.java
Executable file → Normal file
0
apis/cloudfiles/src/main/java/org/jclouds/cloudfiles/CDNManagement.java
Executable file → Normal file
0
apis/cloudservers/src/test/resources/log4j.xml
Executable file → Normal file
0
apis/cloudservers/src/test/resources/log4j.xml
Executable file → Normal file
@ -0,0 +1,75 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (C) 2011 Cloud Conscious, LLC. <info@cloudconscious.com>
|
||||
*
|
||||
* ====================================================================
|
||||
* Licensed 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.openstack.nova.functions;
|
||||
|
||||
import com.google.inject.Guice;
|
||||
import com.google.inject.Injector;
|
||||
import com.google.inject.Key;
|
||||
import com.google.inject.TypeLiteral;
|
||||
import org.jclouds.http.HttpResponse;
|
||||
import org.jclouds.http.functions.UnwrapOnlyJsonValue;
|
||||
import org.jclouds.io.Payloads;
|
||||
import org.jclouds.json.config.GsonModule;
|
||||
import org.jclouds.openstack.nova.domain.Server;
|
||||
import org.jclouds.openstack.nova.domain.ServerStatus;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.net.UnknownHostException;
|
||||
import java.text.ParseException;
|
||||
|
||||
import static org.testng.Assert.assertEquals;
|
||||
import static org.testng.Assert.assertTrue;
|
||||
|
||||
@Test(groups = "unit")
|
||||
public class ParseServerFromJsonNoAddressesResponseTest {
|
||||
|
||||
@Test
|
||||
public void testApplyInputStreamDetails() throws UnknownHostException, NoSuchMethodException, ClassNotFoundException, ParseException {
|
||||
Server response = parseServer();
|
||||
|
||||
assertEquals(response.getId(), 847);
|
||||
assertEquals(response.getName(), "cmsNode-fa2");
|
||||
assertEquals(response.getImageRef(), "http://dragon004.hw.griddynamics.net:8774/v1.1/images/106");
|
||||
assertEquals(response.getFlavorRef(), "http://dragon004.hw.griddynamics.net:8774/v1.1/flavors/2");
|
||||
assertEquals(response.getStatus(), ServerStatus.BUILD);
|
||||
|
||||
assertTrue(response.getAddresses().getPublicAddresses().isEmpty());
|
||||
assertTrue(response.getAddresses().getPrivateAddresses().isEmpty());
|
||||
}
|
||||
|
||||
public static Server parseServer() throws NoSuchMethodException, ClassNotFoundException {
|
||||
|
||||
Injector i = Guice.createInjector(new GsonModule() {
|
||||
@Override
|
||||
protected void configure() {
|
||||
super.configure();
|
||||
bind(DateAdapter.class).to(Iso8601DateAdapter.class);
|
||||
}
|
||||
});
|
||||
|
||||
InputStream is = ParseServerFromJsonNoAddressesResponseTest.class.getResourceAsStream("/test_get_server_detail_no_addresses.json");
|
||||
|
||||
UnwrapOnlyJsonValue<Server> parser = i.getInstance(Key.get(new TypeLiteral<UnwrapOnlyJsonValue<Server>>() {
|
||||
}));
|
||||
|
||||
return parser.apply(new HttpResponse(200, "ok", Payloads.newInputStreamPayload(is)));
|
||||
}
|
||||
|
||||
}
|
@ -101,7 +101,7 @@ public class ParseServerFromJsonResponseTest {
|
||||
UnwrapOnlyJsonValue<Server> parser = i.getInstance(Key.get(new TypeLiteral<UnwrapOnlyJsonValue<Server>>() {
|
||||
}));
|
||||
|
||||
return (Server) parser.apply(new HttpResponse(200, "ok", Payloads.newInputStreamPayload(is)));
|
||||
return parser.apply(new HttpResponse(200, "ok", Payloads.newInputStreamPayload(is)));
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -18,18 +18,18 @@
|
||||
*/
|
||||
package org.jclouds.openstack.nova.live;
|
||||
|
||||
import com.google.common.base.Charsets;
|
||||
import com.google.common.collect.ImmutableMap;
|
||||
import com.google.common.io.Files;
|
||||
import org.jclouds.Constants;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
|
||||
import org.jclouds.Constants;
|
||||
|
||||
import com.google.common.base.Charsets;
|
||||
import com.google.common.collect.ImmutableMap;
|
||||
import com.google.common.io.Resources;
|
||||
|
||||
/**
|
||||
* @author Victor Galkin
|
||||
*/
|
||||
@ -44,8 +44,8 @@ public class PropertyHelper {
|
||||
|
||||
public static Map<String, String> setupKeyPair(Properties properties) throws FileNotFoundException, IOException {
|
||||
return ImmutableMap.<String, String>of(
|
||||
"private", Files.toString(new File(properties.getProperty("test.ssh.keyfile.private")), Charsets.UTF_8),
|
||||
"public", Files.toString(new File(properties.getProperty("test.ssh.keyfile.public")), Charsets.UTF_8));
|
||||
"private", Resources.toString(Resources.getResource(properties.getProperty("test.ssh.keyfile.private")), Charsets.UTF_8),
|
||||
"public", Resources.toString(Resources.getResource(properties.getProperty("test.ssh.keyfile.public")), Charsets.UTF_8));
|
||||
}
|
||||
|
||||
public static Properties setupProperties(Class<?> clazz) throws IOException {
|
||||
|
@ -129,7 +129,7 @@ public class NovaComputeServiceLiveTest extends ComputeBase {
|
||||
.family(OsFamily.UBUNTU).description("ffoo").build()));
|
||||
}
|
||||
|
||||
@Test(expectedExceptions = JSchException.class, expectedExceptionsMessageRegExp = "Auth fail", timeOut = 60000)
|
||||
@Test(expectedExceptions = JSchException.class, expectedExceptionsMessageRegExp = "Auth fail", timeOut = 120000)
|
||||
void testScriptExecutionWithWrongCredentials() throws Throwable, RunScriptOnNodesException, URISyntaxException, InterruptedException {
|
||||
NodeMetadata node = getDefaultNodeImmediately(group);
|
||||
String address = awaitForPublicAddressAssigned(node.getId());
|
||||
@ -144,7 +144,7 @@ public class NovaComputeServiceLiveTest extends ComputeBase {
|
||||
}
|
||||
}
|
||||
|
||||
@Test(timeOut = 60000)
|
||||
@Test(timeOut = 120000)
|
||||
public void testScriptExecutionAfterBootWithBasicTemplate() throws InterruptedException, RunNodesException, RunScriptOnNodesException, URISyntaxException, IOException {
|
||||
|
||||
NodeMetadata node = getDefaultNodeImmediately(group);
|
||||
@ -159,7 +159,8 @@ public class NovaComputeServiceLiveTest extends ComputeBase {
|
||||
//TODO runJavaInstallationScriptWithCreds(group, os, new Credentials("root", keyPair.get("private")));
|
||||
//TODO no response? if os is null (ZYPPER)
|
||||
|
||||
checkNodes(Sets.<NodeMetadata>newHashSet(node), group);
|
||||
node = computeService.getNodeMetadata(node.getId());
|
||||
checkNodes(Sets.newHashSet(node), group);
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
Credentials good = node.getCredentials();
|
||||
@ -242,7 +243,7 @@ public class NovaComputeServiceLiveTest extends ComputeBase {
|
||||
return templateBuilder.build();
|
||||
}
|
||||
|
||||
@Test(timeOut = 60000)
|
||||
@Test(timeOut = 120000)
|
||||
public void testGetNodeMetadata() throws Exception {
|
||||
Set<NodeMetadata> nodes = Sets.newHashSet(getDefaultNodeImmediately(group));
|
||||
awaitForPublicAddressAssigned(nodes.iterator().next().getId());
|
||||
@ -391,8 +392,9 @@ public class NovaComputeServiceLiveTest extends ComputeBase {
|
||||
assertEquals(provider.getParent(), null);
|
||||
}
|
||||
|
||||
@Test(timeOut = 60000)
|
||||
@Test(timeOut = 60000, enabled = false)
|
||||
public void testListHardwareProfiles() throws Exception {
|
||||
//TODO: failing, OpenStack returns a hardware with 0 CPU cores
|
||||
for (Hardware hardware : computeService.listHardwareProfiles()) {
|
||||
assert hardware.getProviderId() != null;
|
||||
assert getCores(hardware) > 0;
|
||||
|
@ -56,8 +56,9 @@ public class ServiceActionsLiveTest extends ComputeBase {
|
||||
//testGetNodeMetadata();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(enabled = false)
|
||||
public void testSuspendResume() throws Exception {
|
||||
//TODO: failing, suspend is not supported by the nova provider yet
|
||||
getDefaultNodeImmediately(group);
|
||||
computeService.suspendNodesMatching(inGroup(group));
|
||||
|
||||
|
@ -23,6 +23,8 @@ import com.google.common.collect.ImmutableMap;
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
import com.google.inject.Injector;
|
||||
import com.google.inject.Module;
|
||||
import org.jclouds.domain.Credentials;
|
||||
import org.jclouds.http.handlers.BackoffLimitedRetryHandler;
|
||||
import org.jclouds.logging.slf4j.config.SLF4JLoggingModule;
|
||||
import org.jclouds.net.IPSocket;
|
||||
import org.jclouds.openstack.nova.NovaClient;
|
||||
@ -32,12 +34,16 @@ import org.jclouds.predicates.RetryablePredicate;
|
||||
import org.jclouds.predicates.SocketOpen;
|
||||
import org.jclouds.rest.RestContextFactory;
|
||||
import org.jclouds.ssh.SshClient;
|
||||
import org.jclouds.ssh.SshException;
|
||||
import org.jclouds.ssh.jsch.JschSshClient;
|
||||
import org.jclouds.ssh.jsch.config.JschSshClientModule;
|
||||
import org.testng.annotations.BeforeTest;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URISyntaxException;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import static org.jclouds.openstack.nova.live.PropertyHelper.*;
|
||||
@ -84,7 +90,7 @@ public class ClientBase {
|
||||
return createDefaultServer(defaultName);
|
||||
}
|
||||
|
||||
private Server createDefaultServer(String serverName) {
|
||||
protected Server createDefaultServer(String serverName) {
|
||||
String imageRef = client.getImage(testImageId).getURI().toASCIIString();
|
||||
String flavorRef = client.getFlavor(1).getURI().toASCIIString();
|
||||
|
||||
|
@ -63,8 +63,9 @@ public class NovaClientLiveTest extends ClientBase {
|
||||
assertTrue(initialContainerCount >= 0);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(enabled = false)
|
||||
public void testListImages() throws Exception {
|
||||
//TODO: failing, image name should not be null (issue in the OpenStack)
|
||||
Set<Image> response = client.listImages();
|
||||
assert null != response;
|
||||
long imageCount = response.size();
|
||||
@ -76,8 +77,9 @@ public class NovaClientLiveTest extends ClientBase {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(enabled = false)
|
||||
public void testListImagesDetail() throws Exception {
|
||||
//TODO: failing, image name should not be null (issue in the OpenStack)
|
||||
Set<Image> response = client.listImages(withDetails());
|
||||
assert null != response;
|
||||
long imageCount = response.size();
|
||||
@ -182,9 +184,8 @@ public class NovaClientLiveTest extends ClientBase {
|
||||
|
||||
@Test(enabled = true)
|
||||
public void testCreateServer() throws Exception {
|
||||
Server server = getDefaultServerImmediately();
|
||||
Server server = createDefaultServer(serverPrefix + "for_create");
|
||||
assertNotNull(server.getAdminPass());
|
||||
assertEquals(server.getStatus(), ServerStatus.BUILD);
|
||||
int serverId = server.getId();
|
||||
@SuppressWarnings("unused")
|
||||
String adminPass = server.getAdminPass();
|
||||
@ -227,11 +228,11 @@ public class NovaClientLiveTest extends ClientBase {
|
||||
}
|
||||
}
|
||||
|
||||
@Test(enabled = true, timeOut = 300000)
|
||||
@Test(enabled = false, timeOut = 300000)
|
||||
public void testServerDetails() throws Exception {
|
||||
//TODO: failing, /v1.1/servers/{server id}/ips URL is not available (issue in the OpenStack)
|
||||
Server server = getDefaultServerImmediately();
|
||||
assertNotNull(server.getHostId(), "Host id: ");
|
||||
assertEquals(server.getStatus(), ServerStatus.ACTIVE);
|
||||
assertNotNull(server.getAddresses());
|
||||
// check metadata
|
||||
assertEquals(server.getMetadata(), metadata);
|
||||
@ -247,7 +248,6 @@ public class NovaClientLiveTest extends ClientBase {
|
||||
assert server.getProgress() >= 0 : "newDetails.getProgress()" + server.getProgress();
|
||||
}
|
||||
|
||||
|
||||
private void assertPassword(Server server, String pass) throws IOException {
|
||||
IPSocket socket = new IPSocket(Iterables.get(server.getAddresses().getPublicAddresses(), 0).getAddress(), 22);
|
||||
//socketTester.apply(socket);
|
||||
@ -274,17 +274,21 @@ public class NovaClientLiveTest extends ClientBase {
|
||||
assertEquals(oldName + "new", client.getServer(serverId).getName());
|
||||
}
|
||||
|
||||
@Test(enabled = true, timeOut = 5 * 60 * 1000)
|
||||
@Test(enabled = false, timeOut = 5 * 60 * 1000)
|
||||
public void testChangePassword() throws Exception {
|
||||
//TODO: failing, fix acceptPassword method logic, however password is not changed by OpenStack
|
||||
int serverId = getDefaultServerImmediately().getId();
|
||||
blockUntilServerActive(serverId);
|
||||
blockUntilPublicAddress(serverId);
|
||||
client.changeAdminPass(serverId, "elmo");
|
||||
//TODO: wait until SSH is available
|
||||
assertPassword(client.getServer(serverId), "elmo");
|
||||
|
||||
}
|
||||
|
||||
@Test(enabled = true, timeOut = 10 * 600 * 1000)
|
||||
@Test(enabled = false, timeOut = 10 * 600 * 1000)
|
||||
public void testCreateImage() throws Exception {
|
||||
//TODO: failing, create image from instance returns incorrect JSON
|
||||
Server server = getDefaultServerImmediately();
|
||||
Image image = getDefaultImageImmediately(server);
|
||||
blockUntilImageActive(image.getId());
|
||||
@ -293,8 +297,9 @@ public class NovaClientLiveTest extends ClientBase {
|
||||
}
|
||||
|
||||
|
||||
@Test(enabled = true, timeOut = 10 * 60 * 1000)
|
||||
@Test(enabled = false, timeOut = 10 * 60 * 1000)
|
||||
public void testRebuildServer() throws Exception {
|
||||
//TODO: failing, create image from instance returns incorrect JSON
|
||||
Server server = getDefaultServerImmediately();
|
||||
Image image = getDefaultImageImmediately(server);
|
||||
client.rebuildServer(server.getId(), new RebuildServerOptions().withImage(String.valueOf(image.getId())));
|
||||
@ -349,8 +354,9 @@ public class NovaClientLiveTest extends ClientBase {
|
||||
waitServerDeleted(serverId);
|
||||
}
|
||||
|
||||
@Test(enabled = true, timeOut = 60000)
|
||||
@Test(enabled = false, timeOut = 60000)
|
||||
void testDeleteImage() throws Exception {
|
||||
//TODO: failing, create image from instance returns incorrect JSON
|
||||
Image image = getDefaultImageImmediately(getDefaultServerImmediately());
|
||||
client.deleteImage(image.getId());
|
||||
assert client.getImage(image.getId()) == null;
|
||||
|
@ -12,4 +12,7 @@
|
||||
</root>
|
||||
|
||||
<logger name="org.jclouds" level="debug" />
|
||||
<logger name="jclouds.wire" level="debug" />
|
||||
<logger name="jclouds.headers" level="debug" />
|
||||
<logger name="jclouds.ssh" level="debug" />
|
||||
</configuration>
|
@ -0,0 +1,20 @@
|
||||
{
|
||||
"server" : {
|
||||
"status":"BUILD",
|
||||
"hostId":"",
|
||||
"addresses": {
|
||||
"public":[],
|
||||
"private":[]
|
||||
},
|
||||
"imageRef":"http://dragon004.hw.griddynamics.net:8774/v1.1/images/106",
|
||||
"adminPass":"MHfyHXPoj88on737",
|
||||
"flavorRef":"http://dragon004.hw.griddynamics.net:8774/v1.1/flavors/2",
|
||||
"links" : [
|
||||
{"href":"http://dragon004.hw.griddynamics.net:8774/v1.1/servers/847","rel":"self"},
|
||||
{"href":"http://dragon004.hw.griddynamics.net:8774/v1.1/servers/847","type":"application/json","rel":"bookmark"},
|
||||
{"href":"http://dragon004.hw.griddynamics.net:8774/v1.1/servers/847","type":"application/xml","rel":"bookmark"}],
|
||||
"name" : "cmsNode-fa2",
|
||||
"id":847,
|
||||
"metadata" : {}
|
||||
}
|
||||
}
|
0
apis/swift/src/main/java/org/jclouds/openstack/swift/Storage.java
Executable file → Normal file
0
apis/swift/src/main/java/org/jclouds/openstack/swift/Storage.java
Executable file → Normal file
0
apis/swift/src/test/resources/log4j.xml
Executable file → Normal file
0
apis/swift/src/test/resources/log4j.xml
Executable file → Normal file
0
apis/vcloudexpress/src/main/java/org/jclouds/vcloud/VCloudExpressLoginAsyncClient.java
Executable file → Normal file
0
apis/vcloudexpress/src/main/java/org/jclouds/vcloud/VCloudExpressLoginAsyncClient.java
Executable file → Normal file
0
apis/vcloudexpress/src/main/java/org/jclouds/vcloud/compute/config/VCloudExpressComputeServiceContextModule.java
Executable file → Normal file
0
apis/vcloudexpress/src/main/java/org/jclouds/vcloud/compute/config/VCloudExpressComputeServiceContextModule.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/InputStreamMap.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/InputStreamMap.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/ListableMap.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/ListableMap.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/TransientAsyncBlobStore.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/TransientAsyncBlobStore.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/functions/BlobName.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/functions/BlobName.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/functions/ParseSystemAndUserMetadataFromHeaders.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/functions/ParseSystemAndUserMetadataFromHeaders.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/functions/ThrowContainerNotFoundOn404.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/functions/ThrowContainerNotFoundOn404.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/internal/BaseBlobMap.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/internal/BaseBlobMap.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/internal/BlobMapImpl.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/internal/BlobMapImpl.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/internal/InputStreamMapImpl.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/internal/InputStreamMapImpl.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/reference/BlobStoreConstants.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/reference/BlobStoreConstants.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/reference/package-info.java
Executable file → Normal file
0
blobstore/src/main/java/org/jclouds/blobstore/reference/package-info.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/functions/ParseBlobFromHeadersAndHttpContentTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/functions/ParseBlobFromHeadersAndHttpContentTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/TransientBlobIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/TransientBlobIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/TransientContainerIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/TransientContainerIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseBlobIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseBlobIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseBlobLiveTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseBlobLiveTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseBlobMapIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseBlobMapIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseContainerIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseContainerIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseContainerLiveTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseContainerLiveTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseInputStreamMapIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseInputStreamMapIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseMapIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseMapIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseServiceIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/integration/internal/BaseServiceIntegrationTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/internal/BaseBlobMapTest.java
Executable file → Normal file
0
blobstore/src/test/java/org/jclouds/blobstore/internal/BaseBlobMapTest.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/filters/FormSigner.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/filters/FormSigner.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/handlers/AWSClientErrorRetryHandler.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/handlers/AWSClientErrorRetryHandler.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/handlers/AWSRedirectionRetryHandler.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/handlers/AWSRedirectionRetryHandler.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/handlers/ParseAWSErrorFromXmlContent.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/handlers/ParseAWSErrorFromXmlContent.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/handlers/package-info.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/handlers/package-info.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/reference/AWSConstants.java
Executable file → Normal file
0
common/aws/src/main/java/org/jclouds/aws/reference/AWSConstants.java
Executable file → Normal file
0
common/aws/src/test/java/org/jclouds/aws/xml/ErrorHandlerTest.java
Executable file → Normal file
0
common/aws/src/test/java/org/jclouds/aws/xml/ErrorHandlerTest.java
Executable file → Normal file
0
common/azure/src/main/java/org/jclouds/azure/storage/AzureStorageContextBuilder.java
Executable file → Normal file
0
common/azure/src/main/java/org/jclouds/azure/storage/AzureStorageContextBuilder.java
Executable file → Normal file
0
common/azure/src/test/java/org/jclouds/azure/storage/filters/SharedKeyLiteAuthenticationTest.java
Executable file → Normal file
0
common/azure/src/test/java/org/jclouds/azure/storage/filters/SharedKeyLiteAuthenticationTest.java
Executable file → Normal file
0
common/azure/src/test/resources/log4j.xml
Executable file → Normal file
0
common/azure/src/test/resources/log4j.xml
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/OpenStackAuthAsyncClient.java
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/OpenStackAuthAsyncClient.java
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/config/OpenStackAuthenticationModule.java
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/config/OpenStackAuthenticationModule.java
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/filters/AuthenticateRequest.java
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/filters/AuthenticateRequest.java
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/functions/ParseAuthenticationResponseFromHeaders.java
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/functions/ParseAuthenticationResponseFromHeaders.java
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/reference/package-info.java
Executable file → Normal file
0
common/openstack/src/main/java/org/jclouds/openstack/reference/package-info.java
Executable file → Normal file
0
common/openstack/src/test/java/org/jclouds/openstack/OpenStackAuthAsyncClientTest.java
Executable file → Normal file
0
common/openstack/src/test/java/org/jclouds/openstack/OpenStackAuthAsyncClientTest.java
Executable file → Normal file
0
common/trmk/src/main/java/org/jclouds/vcloud/terremark/compute/config/TerremarkVCloudComputeServiceContextModule.java
Executable file → Normal file
0
common/trmk/src/main/java/org/jclouds/vcloud/terremark/compute/config/TerremarkVCloudComputeServiceContextModule.java
Executable file → Normal file
0
common/trmk/src/test/resources/log4j.xml
Executable file → Normal file
0
common/trmk/src/test/resources/log4j.xml
Executable file → Normal file
0
common/vcloud/src/main/java/org/jclouds/vcloud/functions/ParseLoginResponseFromHeaders.java
Executable file → Normal file
0
common/vcloud/src/main/java/org/jclouds/vcloud/functions/ParseLoginResponseFromHeaders.java
Executable file → Normal file
0
common/vcloud/src/main/java/org/jclouds/vcloud/reference/package-info.java
Executable file → Normal file
0
common/vcloud/src/main/java/org/jclouds/vcloud/reference/package-info.java
Executable file → Normal file
0
common/vcloud/src/main/java/org/jclouds/vcloud/xml/OrgListHandler.java
Executable file → Normal file
0
common/vcloud/src/main/java/org/jclouds/vcloud/xml/OrgListHandler.java
Executable file → Normal file
0
common/vcloud/src/test/java/org/jclouds/vcloud/VCloudLoginAsyncClientTest.java
Executable file → Normal file
0
common/vcloud/src/test/java/org/jclouds/vcloud/VCloudLoginAsyncClientTest.java
Executable file → Normal file
0
common/vcloud/src/test/resources/log4j.xml
Executable file → Normal file
0
common/vcloud/src/test/resources/log4j.xml
Executable file → Normal file
0
compute/src/main/java/org/jclouds/compute/ComputeService.java
Executable file → Normal file
0
compute/src/main/java/org/jclouds/compute/ComputeService.java
Executable file → Normal file
0
compute/src/main/java/org/jclouds/compute/internal/BaseComputeService.java
Executable file → Normal file
0
compute/src/main/java/org/jclouds/compute/internal/BaseComputeService.java
Executable file → Normal file
0
compute/src/main/java/org/jclouds/compute/strategy/ListNodesStrategy.java
Executable file → Normal file
0
compute/src/main/java/org/jclouds/compute/strategy/ListNodesStrategy.java
Executable file → Normal file
0
compute/src/main/java/org/jclouds/compute/strategy/impl/CreateNodesWithGroupEncodedIntoNameThenAddToSet.java
Executable file → Normal file
0
compute/src/main/java/org/jclouds/compute/strategy/impl/CreateNodesWithGroupEncodedIntoNameThenAddToSet.java
Executable file → Normal file
0
compute/src/main/java/org/jclouds/ssh/ConfiguresSshClient.java
Executable file → Normal file
0
compute/src/main/java/org/jclouds/ssh/ConfiguresSshClient.java
Executable file → Normal file
0
compute/src/test/java/org/jclouds/compute/BaseComputeServiceLiveTest.java
Executable file → Normal file
0
compute/src/test/java/org/jclouds/compute/BaseComputeServiceLiveTest.java
Executable file → Normal file
0
compute/src/test/java/org/jclouds/compute/options/TemplateOptionsTest.java
Executable file → Normal file
0
compute/src/test/java/org/jclouds/compute/options/TemplateOptionsTest.java
Executable file → Normal file
0
compute/src/test/java/org/jclouds/compute/predicates/OperatingSystemPredicatesTest.java
Executable file → Normal file
0
compute/src/test/java/org/jclouds/compute/predicates/OperatingSystemPredicatesTest.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/PropertiesBuilder.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/PropertiesBuilder.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/collect/Memoized.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/collect/Memoized.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/concurrent/ExceptionParsingListenableFuture.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/concurrent/ExceptionParsingListenableFuture.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/concurrent/SingleThreaded.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/concurrent/SingleThreaded.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/date/DateService.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/date/DateService.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/date/internal/SimpleDateFormatDateService.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/date/internal/SimpleDateFormatDateService.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/encryption/internal/JCECrypto.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/encryption/internal/JCECrypto.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/http/functions/config/SaxParserModule.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/http/functions/config/SaxParserModule.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/Binder.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/Binder.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/ConfiguresRestClient.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/ConfiguresRestClient.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/RestContext.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/RestContext.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/RestContextBuilder.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/RestContextBuilder.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/BinderParam.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/BinderParam.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/ExceptionParser.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/ExceptionParser.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/Headers.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/Headers.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/ParamParser.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/ParamParser.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/QueryParams.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/QueryParams.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/RequestFilters.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/RequestFilters.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/ResponseParser.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/ResponseParser.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/SkipEncoding.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/SkipEncoding.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/VirtualHost.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/VirtualHost.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/XMLResponseParser.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/annotations/XMLResponseParser.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/binders/BindToStringPayload.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/binders/BindToStringPayload.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/config/RestModule.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/config/RestModule.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/internal/AsyncRestClientProxy.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/internal/AsyncRestClientProxy.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/internal/RestAnnotationProcessor.java
Executable file → Normal file
0
core/src/main/java/org/jclouds/rest/internal/RestAnnotationProcessor.java
Executable file → Normal file
0
core/src/test/java/org/jclouds/concurrent/FutureExceptionParserTest.java
Executable file → Normal file
0
core/src/test/java/org/jclouds/concurrent/FutureExceptionParserTest.java
Executable file → Normal file
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user