I tried testing against Havana. Here are the important bits.
`git clone https://github.com/openstack-dev/devstack.git -b stable/havana
devstack/`
`localrc` - https://gist.github.com/everett-toews/7077268
`mvn -Plive -Dtest.openstack-neutron.endpoint=http://166.78.239.199:5000/v2.0/
-Dtest.openstack-neutron.identity=admin:admin
-Dtest.openstack-neutron.credential=devstack clean install`
However, I'm not even getting to the new live tests for the extensions. They
fail at:
Tests run: 23, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 47.518 sec
<<< FAILURE!
testBulkCreateNetwork(org.jclouds.openstack.neutron.v2_0.features.NetworkApiLiveTest)
Time elapsed: 0.991 sec <<< FAILURE!
java.lang.AssertionError: expected [true] but found [false]
at org.testng.Assert.fail(Assert.java:94)
at org.testng.Assert.failNotEquals(Assert.java:494)
at org.testng.Assert.assertTrue(Assert.java:42)
at org.testng.Assert.assertTrue(Assert.java:52)
at
org.jclouds.openstack.neutron.v2_0.features.NetworkApiLiveTest.testBulkCreateNetwork(NetworkApiLiveTest.java:108)
To delete resources:
neutron port-list | awk '{print $2}' | xargs -I{} neutron port-delete "{}"
neutron subnet-list | awk '{print $2}' | xargs -I{} neutron subnet-delete
"{}"
neutron net-list | awk '{print $2}' | xargs -I{} neutron net-delete "{}"
Note that the quantum CLI has been renamed to neutron now too.
Can you please fix the to dos in the previous comment and take a shot at
running the live tests with DevStack Havana?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/36#issuecomment-26687962