@@ -19,70 +19,9 @@ data "nexus_repository_docker_proxy" "acceptance" {
19
19
}`
20
20
}
21
21
22
- func TestAccDataSourceRepositoryDockerProxy (t * testing.T ) {
23
- repoUsingDefaults := repository.DockerProxyRepository {
24
- Name : fmt .Sprintf ("acceptance-%s" , acctest .RandString (10 )),
25
- Online : true ,
26
- Docker : repository.Docker {
27
- ForceBasicAuth : true ,
28
- V1Enabled : true ,
29
- },
30
- DockerProxy : repository.DockerProxy {
31
- IndexType : repository .DockerProxyIndexTypeHub ,
32
- },
33
- Proxy : repository.Proxy {
34
- RemoteURL : "https://registry-1.docker.io" ,
35
- },
36
- Storage : repository.Storage {
37
- BlobStoreName : "default" ,
38
- StrictContentTypeValidation : true ,
39
- },
40
- }
41
-
42
- dataSourceName := "data.nexus_repository_docker_proxy.acceptance"
43
-
44
- resource .Test (t , resource.TestCase {
45
- PreCheck : func () { acceptance .AccPreCheck (t ) },
46
- Providers : acceptance .TestAccProviders ,
47
- Steps : []resource.TestStep {
48
- {
49
- Config : testAccResourceRepositoryDockerProxyConfig (repoUsingDefaults ) + testAccDataSourceRepositoryDockerProxyConfig (),
50
- Check : resource .ComposeTestCheckFunc (
51
- resource .ComposeAggregateTestCheckFunc (
52
- resource .TestCheckResourceAttr (dataSourceName , "id" , repoUsingDefaults .Name ),
53
- resource .TestCheckResourceAttr (dataSourceName , "name" , repoUsingDefaults .Name ),
54
- resource .TestCheckResourceAttr (dataSourceName , "online" , strconv .FormatBool (repoUsingDefaults .Online )),
55
- ),
56
- resource .ComposeAggregateTestCheckFunc (
57
- resource .TestCheckResourceAttr (dataSourceName , "docker.#" , "1" ),
58
- resource .TestCheckResourceAttr (dataSourceName , "docker.0.force_basic_auth" , strconv .FormatBool (repoUsingDefaults .Docker .ForceBasicAuth )),
59
- resource .TestCheckResourceAttr (dataSourceName , "docker.0.v1_enabled" , strconv .FormatBool (repoUsingDefaults .Docker .V1Enabled )),
60
- resource .TestCheckResourceAttr (dataSourceName , "docker_proxy.#" , "1" ),
61
- resource .TestCheckResourceAttr (dataSourceName , "docker_proxy.0.index_type" , string (repoUsingDefaults .DockerProxy .IndexType )),
62
- ),
63
- resource .ComposeAggregateTestCheckFunc (
64
- resource .TestCheckResourceAttr (dataSourceName , "http_client.#" , "1" ),
65
- resource .TestCheckResourceAttr (dataSourceName , "http_client.0.authentication.#" , "0" ),
66
- resource .TestCheckResourceAttr (dataSourceName , "http_client.0.connection.#" , "1" ),
67
- resource .TestCheckResourceAttr (dataSourceName , "negative_cache.#" , "1" ),
68
- resource .TestCheckResourceAttr (dataSourceName , "proxy.#" , "1" ),
69
- resource .TestCheckResourceAttr (dataSourceName , "proxy.0.remote_url" , repoUsingDefaults .Proxy .RemoteURL ),
70
- resource .TestCheckResourceAttr (dataSourceName , "storage.#" , "1" ),
71
- resource .TestCheckResourceAttr (dataSourceName , "storage.0.blob_store_name" , repoUsingDefaults .Storage .BlobStoreName ),
72
- resource .TestCheckResourceAttr (dataSourceName , "storage.0.strict_content_type_validation" , strconv .FormatBool (repoUsingDefaults .Storage .StrictContentTypeValidation )),
73
- ),
74
- ),
75
- },
76
- },
77
- })
78
- }
79
-
80
22
func TestAccProDataSourceRepositoryDockerProxy (t * testing.T ) {
81
- if tools .GetEnv ("SKIP_PRO_TESTS" , "false" ) == "true" {
82
- t .Skip ("Skipping Nexus Pro Tests" )
83
- }
84
23
name := fmt .Sprintf ("acceptance-%s" , acctest .RandString (10 ))
85
- repoUsingDefaults := repository.DockerProxyRepository {
24
+ repo := repository.DockerProxyRepository {
86
25
Name : name ,
87
26
Online : true ,
88
27
Docker : repository.Docker {
@@ -101,39 +40,41 @@ func TestAccProDataSourceRepositoryDockerProxy(t *testing.T) {
101
40
StrictContentTypeValidation : true ,
102
41
},
103
42
}
104
-
43
+ if tools .GetEnv ("SKIP_PRO_TESTS" , "false" ) == "false" {
44
+ repo .Docker .Subdomain = & name
45
+ }
105
46
dataSourceName := "data.nexus_repository_docker_proxy.acceptance"
106
47
107
48
resource .Test (t , resource.TestCase {
108
49
PreCheck : func () { acceptance .AccPreCheck (t ) },
109
50
Providers : acceptance .TestAccProviders ,
110
51
Steps : []resource.TestStep {
111
52
{
112
- Config : testAccResourceRepositoryDockerProxyConfig (repoUsingDefaults ) + testAccDataSourceRepositoryDockerProxyConfig (),
53
+ Config : testAccResourceRepositoryDockerProxyConfig (repo ) + testAccDataSourceRepositoryDockerProxyConfig (),
113
54
Check : resource .ComposeTestCheckFunc (
114
55
resource .ComposeAggregateTestCheckFunc (
115
- resource .TestCheckResourceAttr (dataSourceName , "id" , repoUsingDefaults .Name ),
116
- resource .TestCheckResourceAttr (dataSourceName , "name" , repoUsingDefaults .Name ),
117
- resource .TestCheckResourceAttr (dataSourceName , "online" , strconv .FormatBool (repoUsingDefaults .Online )),
56
+ resource .TestCheckResourceAttr (dataSourceName , "id" , repo .Name ),
57
+ resource .TestCheckResourceAttr (dataSourceName , "name" , repo .Name ),
58
+ resource .TestCheckResourceAttr (dataSourceName , "online" , strconv .FormatBool (repo .Online )),
118
59
),
119
60
resource .ComposeAggregateTestCheckFunc (
120
61
resource .TestCheckResourceAttr (dataSourceName , "docker.#" , "1" ),
121
- resource .TestCheckResourceAttr (dataSourceName , "docker.0.force_basic_auth" , strconv .FormatBool (repoUsingDefaults .Docker .ForceBasicAuth )),
122
- resource .TestCheckResourceAttr (dataSourceName , "docker.0.v1_enabled" , strconv .FormatBool (repoUsingDefaults .Docker .V1Enabled )),
123
- resource .TestCheckResourceAttr (dataSourceName , "docker.0.subdomain" , string (* repoUsingDefaults .Docker .Subdomain )),
62
+ resource .TestCheckResourceAttr (dataSourceName , "docker.0.force_basic_auth" , strconv .FormatBool (repo .Docker .ForceBasicAuth )),
63
+ resource .TestCheckResourceAttr (dataSourceName , "docker.0.v1_enabled" , strconv .FormatBool (repo .Docker .V1Enabled )),
64
+ resource .TestCheckResourceAttr (dataSourceName , "docker.0.subdomain" , string (* repo .Docker .Subdomain )),
124
65
resource .TestCheckResourceAttr (dataSourceName , "docker_proxy.#" , "1" ),
125
- resource .TestCheckResourceAttr (dataSourceName , "docker_proxy.0.index_type" , string (repoUsingDefaults .DockerProxy .IndexType )),
66
+ resource .TestCheckResourceAttr (dataSourceName , "docker_proxy.0.index_type" , string (repo .DockerProxy .IndexType )),
126
67
),
127
68
resource .ComposeAggregateTestCheckFunc (
128
69
resource .TestCheckResourceAttr (dataSourceName , "http_client.#" , "1" ),
129
70
resource .TestCheckResourceAttr (dataSourceName , "http_client.0.authentication.#" , "0" ),
130
71
resource .TestCheckResourceAttr (dataSourceName , "http_client.0.connection.#" , "1" ),
131
72
resource .TestCheckResourceAttr (dataSourceName , "negative_cache.#" , "1" ),
132
73
resource .TestCheckResourceAttr (dataSourceName , "proxy.#" , "1" ),
133
- resource .TestCheckResourceAttr (dataSourceName , "proxy.0.remote_url" , repoUsingDefaults .Proxy .RemoteURL ),
74
+ resource .TestCheckResourceAttr (dataSourceName , "proxy.0.remote_url" , repo .Proxy .RemoteURL ),
134
75
resource .TestCheckResourceAttr (dataSourceName , "storage.#" , "1" ),
135
- resource .TestCheckResourceAttr (dataSourceName , "storage.0.blob_store_name" , repoUsingDefaults .Storage .BlobStoreName ),
136
- resource .TestCheckResourceAttr (dataSourceName , "storage.0.strict_content_type_validation" , strconv .FormatBool (repoUsingDefaults .Storage .StrictContentTypeValidation )),
76
+ resource .TestCheckResourceAttr (dataSourceName , "storage.0.blob_store_name" , repo .Storage .BlobStoreName ),
77
+ resource .TestCheckResourceAttr (dataSourceName , "storage.0.strict_content_type_validation" , strconv .FormatBool (repo .Storage .StrictContentTypeValidation )),
137
78
),
138
79
),
139
80
},
0 commit comments