mirror of https://github.com/apache/jclouds.git
Issue 1022:Move naming convention to Api from Client or Services:: carrenza-vcloud-director
This commit is contained in:
parent
199d39e093
commit
bb5d9b4577
|
@ -94,4 +94,4 @@ public class CarrenzaVCloudDirectorProviderMetadata extends BaseProviderMetadata
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,4 +33,4 @@ public class CarrenzaVCloudDirectorComputeServiceLiveTest { // FIXME: enable whe
|
||||||
// public CarrenzaVCloudDirectorComputeServiceLiveTest() {
|
// public CarrenzaVCloudDirectorComputeServiceLiveTest() {
|
||||||
// provider = "carrenza-vcloud-director";
|
// provider = "carrenza-vcloud-director";
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ import org.testng.annotations.Test;
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "compute" }, testName = "CarrenzaVCloudDirectorTemplateBuilderLiveTest")
|
@Test(groups = { "live", "compute" }, testName = "CarrenzaVCloudDirectorTemplateBuilderLiveTest")
|
||||||
public class CarrenzaVCloudDirectorTemplateBuilderLiveTest {
|
public class CarrenzaVCloudDirectorTemplateBuilderLiveTest {
|
||||||
// BaseTemplateBuilderLiveTest<VCloudDirectorClient, VCloudDirectorAsyncClient, VCloudDirectorContext> {
|
// BaseTemplateBuilderLiveTest<VCloudDirectorApi, VCloudDirectorAsyncApi, VCloudDirectorContext> {
|
||||||
//
|
//
|
||||||
// public CarrenzaVCloudDirectorTemplateBuilderLiveTest() {
|
// public CarrenzaVCloudDirectorTemplateBuilderLiveTest() {
|
||||||
// provider = "carrenza-vcloud-director";
|
// provider = "carrenza-vcloud-director";
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features;
|
package org.jclouds.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.VAppClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.CatalogApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorVAppClientLiveTest")
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorCatalogApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorVAppClientLiveTest extends VAppClientLiveTest {
|
public class CarrenzaVCloudDirectorCatalogApiLiveTest extends CatalogApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorVAppClientLiveTest() {
|
public CarrenzaVCloudDirectorCatalogApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features;
|
package org.jclouds.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.OrgClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.MediaApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorOrgClientLiveTest")
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorMediaApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorOrgClientLiveTest extends OrgClientLiveTest {
|
public class CarrenzaVCloudDirectorMediaApiLiveTest extends MediaApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorOrgClientLiveTest() {
|
public CarrenzaVCloudDirectorMediaApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,36 +0,0 @@
|
||||||
/**
|
|
||||||
* 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.carrenza.vcloud.director.features;
|
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.MediaClientLiveTest;
|
|
||||||
import org.testng.annotations.Test;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @author danikov
|
|
||||||
* @author grkvlt
|
|
||||||
*/
|
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorMediaClientLiveTest")
|
|
||||||
public class CarrenzaVCloudDirectorMediaClientLiveTest extends MediaClientLiveTest {
|
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorMediaClientLiveTest() {
|
|
||||||
provider = "carrenza-vcloud-director";
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features;
|
package org.jclouds.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.TaskClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.NetworkApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorTaskClientLiveTest")
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorNetworkApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorTaskClientLiveTest extends TaskClientLiveTest {
|
public class CarrenzaVCloudDirectorNetworkApiLiveTest extends NetworkApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorTaskClientLiveTest() {
|
public CarrenzaVCloudDirectorNetworkApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,36 +0,0 @@
|
||||||
/**
|
|
||||||
* 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.carrenza.vcloud.director.features;
|
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.NetworkClientLiveTest;
|
|
||||||
import org.testng.annotations.Test;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @author danikov
|
|
||||||
* @author grkvlt
|
|
||||||
*/
|
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorNetworkClientLiveTest")
|
|
||||||
public class CarrenzaVCloudDirectorNetworkClientLiveTest extends NetworkClientLiveTest {
|
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorNetworkClientLiveTest() {
|
|
||||||
provider = "carrenza-vcloud-director";
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
/**
|
||||||
|
* 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.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
|
import org.jclouds.vcloud.director.v1_5.features.OrgApiLiveTest;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*
|
||||||
|
* @author danikov
|
||||||
|
* @author grkvlt
|
||||||
|
*/
|
||||||
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorOrgApiLiveTest")
|
||||||
|
public class CarrenzaVCloudDirectorOrgApiLiveTest extends OrgApiLiveTest {
|
||||||
|
|
||||||
|
public CarrenzaVCloudDirectorOrgApiLiveTest() {
|
||||||
|
provider = "carrenza-vcloud-director";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
/**
|
||||||
|
* 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.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
|
import org.jclouds.vcloud.director.v1_5.features.QueryApiLiveTest;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*
|
||||||
|
* @author danikov
|
||||||
|
* @author grkvlt
|
||||||
|
*/
|
||||||
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorQueryApiLiveTest")
|
||||||
|
public class CarrenzaVCloudDirectorQueryApiLiveTest extends QueryApiLiveTest {
|
||||||
|
|
||||||
|
public CarrenzaVCloudDirectorQueryApiLiveTest() {
|
||||||
|
provider = "carrenza-vcloud-director";
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,36 +0,0 @@
|
||||||
/**
|
|
||||||
* 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.carrenza.vcloud.director.features;
|
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.QueryClientLiveTest;
|
|
||||||
import org.testng.annotations.Test;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @author danikov
|
|
||||||
* @author grkvlt
|
|
||||||
*/
|
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorQueryClientLiveTest")
|
|
||||||
public class CarrenzaVCloudDirectorQueryClientLiveTest extends QueryClientLiveTest {
|
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorQueryClientLiveTest() {
|
|
||||||
provider = "carrenza-vcloud-director";
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
/**
|
||||||
|
* 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.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
|
import org.jclouds.vcloud.director.v1_5.features.TaskApiLiveTest;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*
|
||||||
|
* @author danikov
|
||||||
|
* @author grkvlt
|
||||||
|
*/
|
||||||
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorTaskApiLiveTest")
|
||||||
|
public class CarrenzaVCloudDirectorTaskApiLiveTest extends TaskApiLiveTest {
|
||||||
|
|
||||||
|
public CarrenzaVCloudDirectorTaskApiLiveTest() {
|
||||||
|
provider = "carrenza-vcloud-director";
|
||||||
|
}
|
||||||
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features;
|
package org.jclouds.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.VdcClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.UploadApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorVDCClientLiveTest")
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorUploadApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorVdcClientLiveTest extends VdcClientLiveTest {
|
public class CarrenzaVCloudDirectorUploadApiLiveTest extends UploadApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorVdcClientLiveTest() {
|
public CarrenzaVCloudDirectorUploadApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,36 +0,0 @@
|
||||||
/**
|
|
||||||
* 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.carrenza.vcloud.director.features;
|
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.UploadClientLiveTest;
|
|
||||||
import org.testng.annotations.Test;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @author danikov
|
|
||||||
* @author grkvlt
|
|
||||||
*/
|
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorUploadClientLiveTest")
|
|
||||||
public class CarrenzaVCloudDirectorUploadClientLiveTest extends UploadClientLiveTest {
|
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorUploadClientLiveTest() {
|
|
||||||
provider = "carrenza-vcloud-director";
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
/**
|
||||||
|
* 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.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
|
import org.jclouds.vcloud.director.v1_5.features.VAppApiLiveTest;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*
|
||||||
|
* @author danikov
|
||||||
|
* @author grkvlt
|
||||||
|
*/
|
||||||
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorVAppApiLiveTest")
|
||||||
|
public class CarrenzaVCloudDirectorVAppApiLiveTest extends VAppApiLiveTest {
|
||||||
|
|
||||||
|
public CarrenzaVCloudDirectorVAppApiLiveTest() {
|
||||||
|
provider = "carrenza-vcloud-director";
|
||||||
|
}
|
||||||
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features;
|
package org.jclouds.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.CatalogClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.VAppTemplateApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorCatalogClientLiveTest")
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorVAppTemplateApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorCatalogClientLiveTest extends CatalogClientLiveTest {
|
public class CarrenzaVCloudDirectorVAppTemplateApiLiveTest extends VAppTemplateApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorCatalogClientLiveTest() {
|
public CarrenzaVCloudDirectorVAppTemplateApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,36 +0,0 @@
|
||||||
/**
|
|
||||||
* 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.carrenza.vcloud.director.features;
|
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.VAppTemplateClientLiveTest;
|
|
||||||
import org.testng.annotations.Test;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @author danikov
|
|
||||||
* @author grkvlt
|
|
||||||
*/
|
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorVAppTemplateClientLiveTest")
|
|
||||||
public class CarrenzaVCloudDirectorVAppTemplateClientLiveTest extends VAppTemplateClientLiveTest {
|
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorVAppTemplateClientLiveTest() {
|
|
||||||
provider = "carrenza-vcloud-director";
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
/**
|
||||||
|
* 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.carrenza.vcloud.director.features;
|
||||||
|
|
||||||
|
import org.jclouds.vcloud.director.v1_5.features.VdcApiLiveTest;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*
|
||||||
|
* @author danikov
|
||||||
|
* @author grkvlt
|
||||||
|
*/
|
||||||
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorVDCApiLiveTest")
|
||||||
|
public class CarrenzaVCloudDirectorVdcApiLiveTest extends VdcApiLiveTest {
|
||||||
|
|
||||||
|
public CarrenzaVCloudDirectorVdcApiLiveTest() {
|
||||||
|
provider = "carrenza-vcloud-director";
|
||||||
|
}
|
||||||
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features.admin;
|
package org.jclouds.carrenza.vcloud.director.features.admin;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.admin.AdminCatalogClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.admin.AdminCatalogApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorAdminCatalogClientLiveTest")
|
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorAdminCatalogApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorAdminCatalogClientLiveTest extends AdminCatalogClientLiveTest {
|
public class CarrenzaVCloudDirectorAdminCatalogApiLiveTest extends AdminCatalogApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorAdminCatalogClientLiveTest() {
|
public CarrenzaVCloudDirectorAdminCatalogApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features.admin;
|
package org.jclouds.carrenza.vcloud.director.features.admin;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.admin.AdminNetworkClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.admin.AdminNetworkApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorAdminNetworkClientLiveTest")
|
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorAdminNetworkApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorAdminNetworkClientLiveTest extends AdminNetworkClientLiveTest {
|
public class CarrenzaVCloudDirectorAdminNetworkApiLiveTest extends AdminNetworkApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorAdminNetworkClientLiveTest() {
|
public CarrenzaVCloudDirectorAdminNetworkApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features.admin;
|
package org.jclouds.carrenza.vcloud.director.features.admin;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.admin.UserClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.admin.AdminOrgApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorUserClientLiveTest")
|
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorOrgApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorUserClientLiveTest extends UserClientLiveTest {
|
public class CarrenzaVCloudDirectorAdminOrgApiLiveTest extends AdminOrgApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorUserClientLiveTest() {
|
public CarrenzaVCloudDirectorAdminOrgApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features.admin;
|
package org.jclouds.carrenza.vcloud.director.features.admin;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.admin.AdminQueryClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.admin.AdminQueryApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorAdminQueryClientLiveTest")
|
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorAdminQueryApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorAdminQueryClientLiveTest extends AdminQueryClientLiveTest {
|
public class CarrenzaVCloudDirectorAdminQueryApiLiveTest extends AdminQueryApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorAdminQueryClientLiveTest() {
|
public CarrenzaVCloudDirectorAdminQueryApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features.admin;
|
package org.jclouds.carrenza.vcloud.director.features.admin;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.admin.GroupClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.admin.AdminVdcApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorGroupClientLiveTest")
|
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorAdminVdcApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorGroupClientLiveTest extends GroupClientLiveTest {
|
public class CarrenzaVCloudDirectorAdminVdcApiLiveTest extends AdminVdcApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorGroupClientLiveTest() {
|
public CarrenzaVCloudDirectorAdminVdcApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features.admin;
|
package org.jclouds.carrenza.vcloud.director.features.admin;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.admin.AdminOrgClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.admin.GroupApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorOrgClientLiveTest")
|
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorGroupApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorAdminOrgClientLiveTest extends AdminOrgClientLiveTest {
|
public class CarrenzaVCloudDirectorGroupApiLiveTest extends GroupApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorAdminOrgClientLiveTest() {
|
public CarrenzaVCloudDirectorGroupApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.features.admin;
|
package org.jclouds.carrenza.vcloud.director.features.admin;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.features.admin.AdminVdcClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.features.admin.UserApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorAdminVdcClientLiveTest")
|
@Test(groups = { "live", "admin" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorUserApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorAdminVdcClientLiveTest extends AdminVdcClientLiveTest {
|
public class CarrenzaVCloudDirectorUserApiLiveTest extends UserApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorAdminVdcClientLiveTest() {
|
public CarrenzaVCloudDirectorUserApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.carrenza.vcloud.director.login;
|
package org.jclouds.carrenza.vcloud.director.login;
|
||||||
|
|
||||||
import org.jclouds.vcloud.director.v1_5.login.SessionClientLiveTest;
|
import org.jclouds.vcloud.director.v1_5.login.SessionApiLiveTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,10 +27,10 @@ import org.testng.annotations.Test;
|
||||||
* @author danikov
|
* @author danikov
|
||||||
* @author grkvlt
|
* @author grkvlt
|
||||||
*/
|
*/
|
||||||
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorSessionClientLiveTest")
|
@Test(groups = { "live", "user" }, singleThreaded = true, testName = "CarrenzaVCloudDirectorSessionApiLiveTest")
|
||||||
public class CarrenzaVCloudDirectorSessionClientLiveTest extends SessionClientLiveTest {
|
public class CarrenzaVCloudDirectorSessionApiLiveTest extends SessionApiLiveTest {
|
||||||
|
|
||||||
public CarrenzaVCloudDirectorSessionClientLiveTest() {
|
public CarrenzaVCloudDirectorSessionApiLiveTest() {
|
||||||
provider = "carrenza-vcloud-director";
|
provider = "carrenza-vcloud-director";
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue