forked from ovh/terraform-provider-ovh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_cloud_project_containerregistry_test.go
53 lines (46 loc) · 1.54 KB
/
data_cloud_project_containerregistry_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package ovh
import (
"fmt"
"os"
"testing"
"github.com/hashicorp/terraform-plugin-testing/helper/acctest"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
)
func TestAccCloudProjectContainerRegistryDataSource_basic(t *testing.T) {
serviceName := os.Getenv("OVH_CLOUD_PROJECT_SERVICE_TEST")
registryName := acctest.RandomWithPrefix(test_prefix)
region := os.Getenv("OVH_CLOUD_PROJECT_CONTAINERREGISTRY_REGION_TEST")
config := fmt.Sprintf(
testAccCloudProjectContainerRegistryDatasourceConfig_Basic,
serviceName,
region,
registryName,
)
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheckContainerRegistry(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: config,
Check: resource.ComposeTestCheckFunc(),
},
},
})
}
const testAccCloudProjectContainerRegistryDatasourceConfig_Basic = `
data "ovh_cloud_project_capabilities_containerregistry_filter" "regcap" {
service_name = "%s"
plan_name = "SMALL"
region = "%s"
}
resource "ovh_cloud_project_containerregistry" "reg" {
service_name = data.ovh_cloud_project_capabilities_containerregistry_filter.regcap.service_name
plan_id = data.ovh_cloud_project_capabilities_containerregistry_filter.regcap.id
name = "%s"
region = data.ovh_cloud_project_capabilities_containerregistry_filter.regcap.region
}
data "ovh_cloud_project_containerregistry" "reg" {
service_name = ovh_cloud_project_containerregistry.reg.service_name
registry_id = ovh_cloud_project_containerregistry.reg.id
}
`