Build failed in Jenkins: jclouds » jclouds Amazon Identity and Access Management (STS) provider #3199

2015-07-07 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds/org.apache.jclouds.provider$aws-sts/3199/ -- Started calculate disk usage of build Finished Calculation of disk usage of build in 0 seconds Started calculate disk usage of workspace Finished Calculation of

Re: [jclouds-labs] Minor fixes for the Docker provider (7c5ded6)

2015-07-07 Thread Andrea Turli
@heidsoft thanks for offering your help. As the other jclouds provider you can run mvn clean install -pLive -Dtest.docker.identity=public.pem -Dtest.docker.credential=private.pem -Dtest.docker.endpoint=https://your-docker-engine:2377 See also README for more details, and issue a PR to fix it

Build failed in Jenkins: jclouds #3199

2015-07-07 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds/3199/changes Changes: [Ignasi Barrera] JCLOUDS-930: Expect a trailing / in tests. [Ignasi Barrera] JCLOUDS-930: LocalStore -- fixup for prefixes. -- [...truncated 40060 lines...] [JENKINS] Archiving

Re: [jclouds] JCLOUDS-930: Transient store integration test fixes (#796)

2015-07-07 Thread Ignasi Barrera
This seems to fix the build. Merged to master. Thanks @timuralp! --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/796#issuecomment-119238161

Re: [jclouds] JCLOUDS-930: Transient store integration test fixes (#796)

2015-07-07 Thread Ignasi Barrera
Closed #796. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/796#event-349807010

Build failed in Jenkins: jclouds-guava-17-18 » 18.0,OpenJDK 7 (latest) #326

2015-07-07 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-guava-17-18/GUAVA_VERSION=18.0,jdk=OpenJDK%207%20(latest)/326/ -- [...truncated 11253 lines...] Test suite progress: tests succeeded: 57, failed: 0, skipped: 2. Starting test

Build failed in Jenkins: jclouds-guava-17-18 » 17.0,OpenJDK 7 (latest) #326

2015-07-07 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-guava-17-18/GUAVA_VERSION=17.0,jdk=OpenJDK%207%20(latest)/326/ -- [...truncated 11791 lines...] Test suite progress: tests succeeded: 57, failed: 0, skipped: 2. Starting test

[jclouds] Fix filtering of directories in the local blob store (#802)

2015-07-07 Thread Timur Alperovich
The local blob store should not explicitly filter out directories. The changed behavior aligns the Transient blob store with Swift. However, the file system blob store does not have a notion of marker blobs and the second commit disables the directory test for the filesystem blob store. You can

[jira] [Created] (JCLOUDS-957) openstack-swift provider throws different exceptions for copyBlob

2015-07-07 Thread Ka-Hing Cheung (JIRA)
Ka-Hing Cheung created JCLOUDS-957: -- Summary: openstack-swift provider throws different exceptions for copyBlob Key: JCLOUDS-957 URL: https://issues.apache.org/jira/browse/JCLOUDS-957 Project:

Re: [jclouds] Swift: do not assume only 1 container in tests. (#800)

2015-07-07 Thread Andrew Gaul
@@ -98,7 +99,13 @@ public void testListWithOptions() throws Exception { String lexicographicallyBeforeName = name.substring(0, name.length() - 1); for (String regionId : regions) { ListContainerOptions options =

Re: [jclouds] JCLOUDS-930: Handle subdir entries correctly. (#801)

2015-07-07 Thread Andrew Gaul
assert container.getNextMarker() == null; - assert container.size() == 1 : container; + assertThat(container.size()).isEqualTo(2); `assertThat(container).hasSize(2)` --- Reply to this email directly or view it on GitHub:

[jira] [Commented] (JCLOUDS-857) Tests fail due to Incorrect number of names on @org.jclouds.json.SerializedNames(value=[loadSucceeded, loadErrors, testPassed, testFailures])

2015-07-07 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-857?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14617690#comment-14617690 ] ASF subversion and git services commented on JCLOUDS-857: - Commit

Re: [jclouds] JCLOUDS-930: Handle subdir entries correctly. (#801)

2015-07-07 Thread Timur Alperovich
The Azure PR will fail in integration tests if merged before this commit (as the change to the test is in this commit). --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/801#issuecomment-119374995

Re: [jclouds] JCLOUDS-930: Handle subdir entries correctly. (#801)

2015-07-07 Thread Timur Alperovich
assert container.getNextMarker() == null; - assert container.size() == 1 : container; + assertThat(container.size()).isEqualTo(2); Done --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/801/files#r34106234

Re: [jclouds] Swift: do not assume only 1 container in tests. (#800)

2015-07-07 Thread Andrew Gaul
@@ -98,7 +99,13 @@ public void testListWithOptions() throws Exception { String lexicographicallyBeforeName = name.substring(0, name.length() - 1); for (String regionId : regions) { ListContainerOptions options =

Re: [jclouds] Swift: do not assume only 1 container in tests. (#800)

2015-07-07 Thread Timur Alperovich
@@ -98,7 +99,13 @@ public void testListWithOptions() throws Exception { String lexicographicallyBeforeName = name.substring(0, name.length() - 1); for (String regionId : regions) { ListContainerOptions options =

Re: [jclouds] Swift: do not assume only 1 container in tests. (#800)

2015-07-07 Thread Timur Alperovich
@@ -98,7 +99,13 @@ public void testListWithOptions() throws Exception { String lexicographicallyBeforeName = name.substring(0, name.length() - 1); for (String regionId : regions) { ListContainerOptions options =

[jclouds] JCLOUDS-930: Handle subdir entries correctly. (#801)

2015-07-07 Thread Timur Alperovich
When listing blobs, Swift returns an array of subdir entries for every common prefix. The openstack-swift provider needs to process such entries and add them to the result set. The subdir array is an array of strings, so additional metadata needs to be added to the objects (bogus ETag, bogus

[jclouds] Swift: do not assume only 1 container in tests. (#800)

2015-07-07 Thread Timur Alperovich
Openstack Swift ContainerApiLiveTest testListWithOptions assumes that there are no other containers and that ContainerApiLiveTest container will _always_ be the first container. The patch changes the behavior of the test to instead pull out the container from the returned list. You can view,

[jclouds] Azure Blob: do not filter out prefixes. (#799)

2015-07-07 Thread Timur Alperovich
We should not filter out prefixes when listing containers, similarly to the way swift behaves. This makes the marker blobs apparently to the user. You can view, comment on, or merge this pull request online at: https://github.com/jclouds/jclouds/pull/799 -- Commit Summary -- * Azure Blob:

Re: [jclouds] Fix filtering of directories in the local blob store (#802)

2015-07-07 Thread Andrew Gaul
I see a failure: ``` TransientContainerIntegrationTestBaseContainerIntegrationTest.testDirectory:239 [[type=RELATIVE_PATH, id=null, name=directory, location=null, uri=null, userMetadata={}], [type=RELATIVE_PATH, id=null, name=directory/, location=null, uri=null, userMetadata={}]] ``` ---

Re: [jclouds] Fix filtering of directories in the local blob store (#802)

2015-07-07 Thread Timur Alperovich
Sorry, I need to base this PR off the Swift subdirectory change as that's where the change to the ```testDirectory``` test happened. I can submit a different PR based off that branch. --- Reply to this email directly or view it on GitHub:

[jira] [Updated] (JCLOUDS-957) openstack-swift provider throws different exceptions for copyBlob

2015-07-07 Thread Ka-Hing Cheung (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-957?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ka-Hing Cheung updated JCLOUDS-957: --- Description: S3 and LocalBlobStore both throw KeyNotFoundException if copyBlob is called

[jira] [Updated] (JCLOUDS-957) openstack-swift provider throws different exceptions for copyBlob

2015-07-07 Thread Andrew Gaul (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-957?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Gaul updated JCLOUDS-957: Assignee: Zack Shoylev openstack-swift provider throws different exceptions for copyBlob

[jira] [Commented] (JCLOUDS-957) openstack-swift provider throws different exceptions for copyBlob

2015-07-07 Thread Andrew Gaul (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-957?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14617674#comment-14617674 ] Andrew Gaul commented on JCLOUDS-957: - [~zack-s] Can you look at this?

[jira] [Updated] (JCLOUDS-957) openstack-swift provider throws different exceptions for copyBlob

2015-07-07 Thread Andrew Gaul (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-957?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Gaul updated JCLOUDS-957: Labels: openstack-swift (was: swift) openstack-swift provider throws different exceptions for

[jira] [Updated] (JCLOUDS-957) openstack-swift provider throws different exceptions for copyBlob

2015-07-07 Thread Andrew Gaul (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-957?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Gaul updated JCLOUDS-957: Affects Version/s: 1.9.0 openstack-swift provider throws different exceptions for copyBlob

Re: [jclouds] JCLOUDS-857: remove spurious annotation (#795)

2015-07-07 Thread Andrew Gaul
Pushed to master as 1c1cfffd5d0e58ec8b8ad1e3d307c9d0ffaeb000 and 1.9.x as jclouds/jclouds-labs-google@6902116473dca49dbb44df4110300536e7106e27. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/795#issuecomment-119383260

Jenkins build is back to normal : jclouds-guava-17-18 » 18.0,OpenJDK 7 (latest) #327

2015-07-07 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-guava-17-18/GUAVA_VERSION=18.0,jdk=OpenJDK%207%20(latest)/327/changes

[jira] [Commented] (JCLOUDS-930) Expose the prefix option when listing a container

2015-07-07 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-930?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14617763#comment-14617763 ] ASF subversion and git services commented on JCLOUDS-930: - Commit

Re: [jclouds] JCLOUDS-930: Handle subdir entries correctly. (#801)

2015-07-07 Thread Andrew Gaul
Closed #801. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/801#event-350289167

Re: [jclouds] Fix filtering of directories in the local blob store (#802)

2015-07-07 Thread Andrew Gaul
Closed #802. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/802#event-350296146

Re: [jclouds] Swift: do not assume only 1 container in tests. (#800)

2015-07-07 Thread Andrew Gaul
Pushed to master as 86af0753bf51bba42d5c18657e1f0e3dd72630ee. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/800#issuecomment-119391756

Re: [jclouds] Swift: do not assume only 1 container in tests. (#800)

2015-07-07 Thread Andrew Gaul
Closed #800. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/800#event-350296138

Re: [jclouds] Fix filtering of directories in the local blob store (#802)

2015-07-07 Thread Andrew Gaul
Pushed to master as 669feb4d0c459b1612818869ce82b9b5d1915f42 and 5383148d9ef92fb39d8958abbe9cae19c80ca609. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/802#issuecomment-119391761

Jenkins build is back to normal : jclouds » jclouds Amazon Identity and Access Management (STS) provider #3201

2015-07-07 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds/org.apache.jclouds.provider$aws-sts/3201/

Jenkins build is back to normal : jclouds #3201

2015-07-07 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds/3201/changes

Build failed in Jenkins: jclouds-guava-17-18 » 17.0,OpenJDK 7 (latest) #327

2015-07-07 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-guava-17-18/GUAVA_VERSION=17.0,jdk=OpenJDK%207%20(latest)/327/changes Changes: [Ignasi Barrera] JCLOUDS-930: Expect a trailing / in tests. [Ignasi Barrera] JCLOUDS-930: LocalStore -- fixup for prefixes. [timur.alperovich] Azure Blob: do not

Jenkins build is back to normal : jclouds-guava-17-18 » 17.0,OpenJDK 7 (latest) #328

2015-07-07 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-guava-17-18/GUAVA_VERSION=17.0,jdk=OpenJDK%207%20(latest)/328/