@@ -37,7 +37,8 @@ func TestCreateSuccessful(t *testing.T) {
37
37
"endpoint": {
38
38
"id": "12",
39
39
"interface": "public",
40
- "links": {
40
+ "enabled": true,
41
+ "links": {
41
42
"self": "https://localhost:5000/v3/endpoints/12"
42
43
},
43
44
"name": "the-endiest-of-points",
@@ -61,6 +62,7 @@ func TestCreateSuccessful(t *testing.T) {
61
62
expected := & endpoints.Endpoint {
62
63
ID : "12" ,
63
64
Availability : gophercloud .AvailabilityPublic ,
65
+ Enabled : true ,
64
66
Name : "the-endiest-of-points" ,
65
67
Region : "underground" ,
66
68
ServiceID : "asdfasdfasdfasdf" ,
@@ -85,6 +87,7 @@ func TestListEndpoints(t *testing.T) {
85
87
{
86
88
"id": "12",
87
89
"interface": "public",
90
+ "enabled": true,
88
91
"links": {
89
92
"self": "https://localhost:5000/v3/endpoints/12"
90
93
},
@@ -96,6 +99,7 @@ func TestListEndpoints(t *testing.T) {
96
99
{
97
100
"id": "13",
98
101
"interface": "internal",
102
+ "enabled": false,
99
103
"links": {
100
104
"self": "https://localhost:5000/v3/endpoints/13"
101
105
},
@@ -126,6 +130,7 @@ func TestListEndpoints(t *testing.T) {
126
130
{
127
131
ID : "12" ,
128
132
Availability : gophercloud .AvailabilityPublic ,
133
+ Enabled : true ,
129
134
Name : "the-endiest-of-points" ,
130
135
Region : "underground" ,
131
136
ServiceID : "asdfasdfasdfasdf" ,
@@ -134,6 +139,7 @@ func TestListEndpoints(t *testing.T) {
134
139
{
135
140
ID : "13" ,
136
141
Availability : gophercloud .AvailabilityInternal ,
142
+ Enabled : false ,
137
143
Name : "shhhh" ,
138
144
Region : "underground" ,
139
145
ServiceID : "asdfasdfasdfasdf" ,
@@ -167,6 +173,7 @@ func TestUpdateEndpoint(t *testing.T) {
167
173
"endpoint": {
168
174
"id": "12",
169
175
"interface": "public",
176
+ "enabled": true,
170
177
"links": {
171
178
"self": "https://localhost:5000/v3/endpoints/12"
172
179
},
@@ -190,6 +197,7 @@ func TestUpdateEndpoint(t *testing.T) {
190
197
expected := & endpoints.Endpoint {
191
198
ID : "12" ,
192
199
Availability : gophercloud .AvailabilityPublic ,
200
+ Enabled : true ,
193
201
Name : "renamed" ,
194
202
Region : "somewhere-else" ,
195
203
ServiceID : "asdfasdfasdfasdf" ,
0 commit comments