Skip to content

Commit

Permalink
[CHANGE] removing a tag that doesn't exist results in an error
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Sep 17, 2024
1 parent de1f16b commit d3fa85b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
5 changes: 4 additions & 1 deletion v2/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -465,15 +465,18 @@ func (u *TagList) Add(p ...string) {
}

// Remove removes 1 or more tags from a list
func (u *TagList) Remove(p ...string) {
func (u *TagList) Remove(p ...string) error {
for _, v := range p {
v = strings.TrimSpace(v)
idx := u.find(v)
if idx != -1 {
a := *u
*u = append(a[:idx], a[idx+1:]...)
} else {
return fmt.Errorf("unable to remove tag: %q - not found", v)
}
}
return nil
}

type CIDRList []string
Expand Down
27 changes: 17 additions & 10 deletions v2/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ func TestTagList(t *testing.T) {
AssertEquals(true, tags.Contains("TWO"), t)
AssertEquals("TWO", tags[1], t)

tags.Remove("ONE")
err := tags.Remove("ONE")
if err == nil {
t.Fatal("removing tag that doesn't exist should have failed")
}
AssertEquals("one", tags[0], t)
AssertEquals(true, tags.Contains("TWO"), t)
}
Expand Down Expand Up @@ -476,23 +479,27 @@ func TestTagList_Add(t *testing.T) {

func TestTagList_Delete(t *testing.T) {
type test struct {
v string
a TagList
shouldBe TagList
v string
a TagList
shouldBe TagList
shouldFail bool
}

tests := []test{
{v: "A", a: TagList{}, shouldBe: TagList{}},
{v: "A", a: TagList{}, shouldBe: TagList{}, shouldFail: true},
{v: "A", a: TagList{"A"}, shouldBe: TagList{}},
{v: "a", a: TagList{"A"}, shouldBe: TagList{"A"}},
{v: "a:Hello", a: TagList{"a:hello"}, shouldBe: TagList{"a:hello"}},
{v: "a:a", a: TagList{"a:A"}, shouldBe: TagList{"a:A"}},
{v: "a", a: TagList{"A"}, shouldBe: TagList{"A"}, shouldFail: true},
{v: "a:Hello", a: TagList{"a:hello"}, shouldBe: TagList{"a:hello"}, shouldFail: true},
{v: "a:a", a: TagList{"a:A"}, shouldBe: TagList{"a:A"}, shouldFail: true},
}

for idx, test := range tests {
test.a.Remove(test.v)
err := test.a.Remove(test.v)
if test.shouldFail && err == nil {
t.Fatalf("[%d] expected delete to fail: %v", idx, test.a)
}
if !test.a.Equals(&test.shouldBe) {
t.Errorf("[%d] expected lists to be equal: %v", idx, test.a)
t.Fatalf("[%d] expected lists to be equal: %v", idx, test.a)
}
}
}

0 comments on commit d3fa85b

Please sign in to comment.