Activity-Relay/cli/config_test.go
2020-01-02 01:26:43 +09:00

147 lines
3.6 KiB
Go

package main
import (
"bytes"
"io/ioutil"
"os"
"strings"
"testing"
)
func TestServiceBlock(t *testing.T) {
app := buildNewCmd()
relayState.SetConfig(BlockService, false)
app.SetArgs([]string{"config", "enable", "service-block"})
app.Execute()
if !relayState.RelayConfig.BlockService {
t.Fatalf("Not Enabled Blocking feature for service-type actor")
}
app.SetArgs([]string{"config", "enable", "-d", "service-block"})
app.Execute()
if relayState.RelayConfig.BlockService {
t.Fatalf("Not Disabled Blocking feature for service-type actor")
}
}
func TestManuallyAccept(t *testing.T) {
app := buildNewCmd()
relayState.SetConfig(ManuallyAccept, false)
app.SetArgs([]string{"config", "enable", "manually-accept"})
app.Execute()
if !relayState.RelayConfig.ManuallyAccept {
t.Fatalf("Not Enabled Manually accept follow-request feature")
}
app.SetArgs([]string{"config", "enable", "-d", "manually-accept"})
app.Execute()
if relayState.RelayConfig.ManuallyAccept {
t.Fatalf("Not Disabled Manually accept follow-request feature")
}
}
func TestCreateAsAnnounce(t *testing.T) {
app := buildNewCmd()
relayState.SetConfig(CreateAsAnnounce, false)
app.SetArgs([]string{"config", "enable", "create-as-announce"})
app.Execute()
if !relayState.RelayConfig.CreateAsAnnounce {
t.Fatalf("Enable announce activity instead of relay create activity")
}
app.SetArgs([]string{"config", "enable", "-d", "create-as-announce"})
app.Execute()
if relayState.RelayConfig.CreateAsAnnounce {
t.Fatalf("Enable announce activity instead of relay create activity")
}
}
func TestInvalidConfig(t *testing.T) {
app := buildNewCmd()
buffer := new(bytes.Buffer)
app.SetOutput(buffer)
app.SetArgs([]string{"config", "enable", "hoge"})
app.Execute()
output := buffer.String()
if strings.Split(output, "\n")[0] != "Invalid config given" {
t.Fatalf("Invalid Responce.")
}
}
func TestListConfig(t *testing.T) {
app := buildNewCmd()
buffer := new(bytes.Buffer)
app.SetOutput(buffer)
app.SetArgs([]string{"config", "list"})
app.Execute()
output := buffer.String()
for _, row := range strings.Split(output, "\n") {
switch strings.Split(row, ":")[0] {
case "Blocking for service-type actor ":
if strings.Split(row, ":")[1] == " true" {
t.Fatalf("Invalid Responce.")
}
case "Manually accept follow-request ":
if strings.Split(row, ":")[1] == " true" {
t.Fatalf("Invalid Responce.")
}
case "Announce activity instead of relay create activity ":
if strings.Split(row, ":")[1] == " true" {
t.Fatalf("Invalid Responce.")
}
}
}
}
func TestExportConfig(t *testing.T) {
app := buildNewCmd()
buffer := new(bytes.Buffer)
app.SetOutput(buffer)
app.SetArgs([]string{"config", "export"})
app.Execute()
file, err := os.Open("../misc/blankConfig.json")
if err != nil {
t.Fatalf("Test resource fetch error.")
}
jsonData, err := ioutil.ReadAll(file)
output := buffer.String()
if strings.Split(output, "\n")[0] != string(jsonData) {
t.Fatalf("Invalid Responce.")
}
}
func TestImportConfig(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{"config", "export"})
app.Execute()
file, err := os.Open("../misc/exampleConfig.json")
if err != nil {
t.Fatalf("Test resource fetch error.")
}
jsonData, err := ioutil.ReadAll(file)
output := buffer.String()
if strings.Split(output, "\n")[0] != string(jsonData) {
t.Fatalf("Invalid Responce.")
}
relayState.RedisClient.FlushAll().Result()
relayState.Load()
}