Fix bugs for unfollow cli.
This commit is contained in:
parent
63c6216b6a
commit
93e3a8e4f5
@ -126,8 +126,8 @@ func unfollowDomains(cmd *cobra.Command, args []string) error {
|
||||
relayState.DelSubscription(subscription.Domain)
|
||||
break
|
||||
}
|
||||
fmt.Println("Invalid domain given")
|
||||
}
|
||||
cmd.Println("Invalid domain [" + domain + "] given")
|
||||
}
|
||||
|
||||
return nil
|
||||
|
@ -198,21 +198,39 @@ func TestUnfollowDomain(t *testing.T) {
|
||||
app.SetArgs([]string{"config", "import", "--json", "../misc/exampleConfig.json"})
|
||||
app.Execute()
|
||||
|
||||
buffer := new(bytes.Buffer)
|
||||
app.SetOutput(buffer)
|
||||
|
||||
app.SetArgs([]string{"domain", "unfollow", "subscription.example.jp"})
|
||||
app.Execute()
|
||||
|
||||
valid := true
|
||||
for _, domain := range relayState.LimitedDomains {
|
||||
if domain == "subscription.example.jp" {
|
||||
for _, domain := range relayState.Subscriptions {
|
||||
if domain.Domain == "subscription.example.jp" {
|
||||
valid = false
|
||||
}
|
||||
}
|
||||
|
||||
if !valid {
|
||||
t.Fatalf("Do not unfollow domain")
|
||||
t.Fatalf("Not unfollowed domain")
|
||||
}
|
||||
|
||||
relayState.RedisClient.FlushAll().Result()
|
||||
relayState.Load()
|
||||
}
|
||||
|
||||
func TestInvalidUnfollowDomain(t *testing.T) {
|
||||
app := buildNewCmd()
|
||||
|
||||
app.SetArgs([]string{"config", "import", "--json", "../misc/exampleConfig.json"})
|
||||
app.Execute()
|
||||
|
||||
buffer := new(bytes.Buffer)
|
||||
app.SetOutput(buffer)
|
||||
|
||||
app.SetArgs([]string{"domain", "unfollow", "unknown.tld"})
|
||||
app.Execute()
|
||||
|
||||
output := buffer.String()
|
||||
if strings.Split(output, "\n")[0] != "Invalid domain [unknown.tld] given" {
|
||||
t.Fatalf("Invalid Responce.")
|
||||
}
|
||||
|
||||
relayState.RedisClient.FlushAll().Result()
|
||||
|
@ -137,7 +137,7 @@ func acceptFollow(cmd *cobra.Command, args []string) error {
|
||||
break
|
||||
}
|
||||
}
|
||||
cmd.Println("Invalid domain given")
|
||||
cmd.Println("Invalid domain [" + domain + "] given")
|
||||
}
|
||||
|
||||
return nil
|
||||
@ -161,8 +161,8 @@ func rejectFollow(cmd *cobra.Command, args []string) error {
|
||||
createFollowRequestResponse(domain, "Reject")
|
||||
break
|
||||
}
|
||||
cmd.Println("Invalid domain given")
|
||||
}
|
||||
cmd.Println("Invalid domain [" + domain + "] given")
|
||||
}
|
||||
|
||||
return nil
|
||||
|
@ -102,7 +102,25 @@ func TestInvalidFollow(t *testing.T) {
|
||||
app.Execute()
|
||||
|
||||
output := buffer.String()
|
||||
if strings.Split(output, "\n")[0] != "Invalid domain given" {
|
||||
if strings.Split(output, "\n")[0] != "Invalid domain [unknown.tld] given" {
|
||||
t.Fatalf("Invalid Responce.")
|
||||
}
|
||||
|
||||
relayState.RedisClient.FlushAll().Result()
|
||||
relayState.Load()
|
||||
}
|
||||
|
||||
func TestInvalidRejectFollow(t *testing.T) {
|
||||
app := buildNewCmd()
|
||||
|
||||
buffer := new(bytes.Buffer)
|
||||
app.SetOutput(buffer)
|
||||
|
||||
app.SetArgs([]string{"follow", "reject", "unknown.tld"})
|
||||
app.Execute()
|
||||
|
||||
output := buffer.String()
|
||||
if strings.Split(output, "\n")[0] != "Invalid domain [unknown.tld] given" {
|
||||
t.Fatalf("Invalid Responce.")
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user