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)
|
relayState.DelSubscription(subscription.Domain)
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
fmt.Println("Invalid domain given")
|
|
||||||
}
|
}
|
||||||
|
cmd.Println("Invalid domain [" + domain + "] given")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
@ -198,21 +198,39 @@ func TestUnfollowDomain(t *testing.T) {
|
|||||||
app.SetArgs([]string{"config", "import", "--json", "../misc/exampleConfig.json"})
|
app.SetArgs([]string{"config", "import", "--json", "../misc/exampleConfig.json"})
|
||||||
app.Execute()
|
app.Execute()
|
||||||
|
|
||||||
buffer := new(bytes.Buffer)
|
|
||||||
app.SetOutput(buffer)
|
|
||||||
|
|
||||||
app.SetArgs([]string{"domain", "unfollow", "subscription.example.jp"})
|
app.SetArgs([]string{"domain", "unfollow", "subscription.example.jp"})
|
||||||
app.Execute()
|
app.Execute()
|
||||||
|
|
||||||
valid := true
|
valid := true
|
||||||
for _, domain := range relayState.LimitedDomains {
|
for _, domain := range relayState.Subscriptions {
|
||||||
if domain == "subscription.example.jp" {
|
if domain.Domain == "subscription.example.jp" {
|
||||||
valid = false
|
valid = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !valid {
|
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()
|
relayState.RedisClient.FlushAll().Result()
|
||||||
|
@ -137,7 +137,7 @@ func acceptFollow(cmd *cobra.Command, args []string) error {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cmd.Println("Invalid domain given")
|
cmd.Println("Invalid domain [" + domain + "] given")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
@ -161,8 +161,8 @@ func rejectFollow(cmd *cobra.Command, args []string) error {
|
|||||||
createFollowRequestResponse(domain, "Reject")
|
createFollowRequestResponse(domain, "Reject")
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
cmd.Println("Invalid domain given")
|
|
||||||
}
|
}
|
||||||
|
cmd.Println("Invalid domain [" + domain + "] given")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
@ -102,7 +102,25 @@ func TestInvalidFollow(t *testing.T) {
|
|||||||
app.Execute()
|
app.Execute()
|
||||||
|
|
||||||
output := buffer.String()
|
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.")
|
t.Fatalf("Invalid Responce.")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user