Fix bugs for unfollow cli.

This commit is contained in:
Naoki Kosaka 2019-01-06 12:34:52 +09:00
parent 63c6216b6a
commit 93e3a8e4f5
4 changed files with 46 additions and 10 deletions

View File

@ -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

View File

@ -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()

View File

@ -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

View File

@ -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.")
}