You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by gr...@apache.org on 2014/11/12 14:48:20 UTC

[3/4] incubator-brooklyn git commit: Delete greenhousedata jclouds tests

Delete greenhousedata jclouds tests

- Greenhouse-element-vcloud was deleted in jclouds 1.8.1,
  see JCLOUDS-743
- The test included the comment “FIXME get Greenhouse working”!

Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/2040c670
Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/2040c670
Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/2040c670

Branch: refs/heads/master
Commit: 2040c670dc1b18205bfc661cfae89570b15e1668
Parents: 0e1bdb5
Author: Aled Sage <al...@gmail.com>
Authored: Wed Nov 12 12:06:52 2014 +0000
Committer: Aled Sage <al...@gmail.com>
Committed: Wed Nov 12 12:06:52 2014 +0000

----------------------------------------------------------------------
 .../GreenhouseDataLocationLiveTest.groovy       | 59 --------------------
 1 file changed, 59 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/2040c670/locations/jclouds/src/test/java/brooklyn/location/jclouds/provider/GreenhouseDataLocationLiveTest.groovy
----------------------------------------------------------------------
diff --git a/locations/jclouds/src/test/java/brooklyn/location/jclouds/provider/GreenhouseDataLocationLiveTest.groovy b/locations/jclouds/src/test/java/brooklyn/location/jclouds/provider/GreenhouseDataLocationLiveTest.groovy
deleted file mode 100644
index 7ea5152..0000000
--- a/locations/jclouds/src/test/java/brooklyn/location/jclouds/provider/GreenhouseDataLocationLiveTest.groovy
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF 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 brooklyn.location.jclouds.provider;
-
-import org.testng.annotations.DataProvider
-import org.testng.annotations.Test
-
-//FIXME get Greenhouse working
-
-class GreenhouseDataLocationLiveTest extends AbstractJcloudsLocationTest {
-    
-    private static final String PROVIDER = "greenhousedata-element-vcloud"
-    private static final String REGION_NAME = null
-    private static final String IMAGE_ID = "1"
-    private static final String IMAGE_OWNER = null
-    private static final String IMAGE_PATTERN = ".*Ubuntu_Server_x64.*"
-
-    public GreenhouseDataLocationLiveTest() {
-        super(PROVIDER)
-    }
-
-    @Override
-    @DataProvider(name = "fromImageId")
-    public Object[][] cloudAndImageIds() {
-        return [ [ REGION_NAME, IMAGE_ID, IMAGE_OWNER ] ]
-    }
-
-    @Override
-    @DataProvider(name = "fromImageDescriptionPattern")
-    public Object[][] cloudAndImageDescriptionPatterns() {
-        return [ [ REGION_NAME, IMAGE_PATTERN, IMAGE_OWNER ] ]
-    }
-
-    @Override
-    @DataProvider(name = "fromImageNamePattern")
-    public Object[][] cloudAndImageNamePatterns() {
-        return []
-    }
-
-    @Test(enabled = false)
-    public void noop() { /* just exists to let testNG IDE run the test */ }
-    
-}