-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add general contract test for IsEmpty
This was the root bug that was causing the over-logging on GCE.
- Loading branch information
Showing
8 changed files
with
137 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
dnsprovider/pkg/dnsprovider/providers/openstack/designate/designate_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
Copyright 2020 The Kubernetes Authors. | ||
Licensed 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 designate | ||
|
||
import ( | ||
"testing" | ||
|
||
"k8s.io/kops/dnsprovider/pkg/dnsprovider/tests" | ||
) | ||
|
||
// TestContract verifies the general interface contract | ||
func TestContract(t *testing.T) { | ||
sets := &ResourceRecordSets{} | ||
|
||
tests.TestContract(t, sets) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
Copyright 2020 The Kubernetes Authors. | ||
Licensed 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 tests | ||
|
||
import ( | ||
"testing" | ||
|
||
"k8s.io/kops/dnsprovider/pkg/dnsprovider" | ||
"k8s.io/kops/dnsprovider/pkg/dnsprovider/rrstype" | ||
) | ||
|
||
// TestContract verifies the general ResourceRecordChangeset contract | ||
func TestContract(t *testing.T, rrsets dnsprovider.ResourceRecordSets) { | ||
|
||
{ | ||
changeset := rrsets.StartChangeset() | ||
if !changeset.IsEmpty() { | ||
t.Fatalf("expected new changeset to be empty") | ||
} | ||
|
||
rrs := changeset.ResourceRecordSets().New("foo", []string{"192.168.0.1"}, 1, rrstype.A) | ||
changeset.Add(rrs) | ||
if changeset.IsEmpty() { | ||
t.Fatalf("expected changeset not to be empty after add") | ||
} | ||
} | ||
|
||
{ | ||
changeset := rrsets.StartChangeset() | ||
if !changeset.IsEmpty() { | ||
t.Fatalf("expected new changeset to be empty") | ||
} | ||
|
||
rrs := changeset.ResourceRecordSets().New("foo", []string{"192.168.0.1"}, 1, rrstype.A) | ||
changeset.Remove(rrs) | ||
if changeset.IsEmpty() { | ||
t.Fatalf("expected changeset not to be empty after remove") | ||
} | ||
} | ||
|
||
{ | ||
changeset := rrsets.StartChangeset() | ||
if !changeset.IsEmpty() { | ||
t.Fatalf("expected new changeset to be empty") | ||
} | ||
|
||
rrs := changeset.ResourceRecordSets().New("foo", []string{"192.168.0.1"}, 1, rrstype.A) | ||
changeset.Upsert(rrs) | ||
if changeset.IsEmpty() { | ||
t.Fatalf("expected changeset not to be empty after upsert") | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters