1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
package config
import (
"encoding/json"
"io/ioutil"
"log"
"os"
"strings"
"testing"
"github.com/twstrike/gotk3adapter/glib_mock"
"github.com/twstrike/coyim/i18n"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
func init() {
log.SetOutput(ioutil.Discard)
i18n.InitLocalization(&glib_mock.Mock{})
}
type ConfigXmppSuite struct{}
var _ = Suite(&ConfigXmppSuite{})
func (s *ConfigXmppSuite) TestParseYes(c *C) {
c.Assert(ParseYes("Y"), Equals, true)
c.Assert(ParseYes("y"), Equals, true)
c.Assert(ParseYes("YES"), Equals, true)
c.Assert(ParseYes("yes"), Equals, true)
c.Assert(ParseYes("Yes"), Equals, true)
c.Assert(ParseYes("anything"), Equals, false)
}
func (s *ConfigXmppSuite) TestSerializeAccountsConfig(c *C) {
expected := `{
"Accounts": [
{
"Account": "bob@riseup.net",
"Peers": [
{
"UserID": "bob@riseup.net",
"Nickname": "boby",
"Fingerprints": null
}
],
"HideStatusUpdates": false,
"OTRAutoTearDown": false,
"OTRAutoAppendTag": false,
"OTRAutoStartSession": false,
"AlwaysEncrypt": true,
"ConnectAutomatically": false
},
{
"Account": "bob@riseup.net",
"Peers": null,
"HideStatusUpdates": false,
"OTRAutoTearDown": false,
"OTRAutoAppendTag": false,
"OTRAutoStartSession": false,
"ConnectAutomatically": false
}
],
"Bell": false,
"ConnectAutomatically": false,
"Display": {
"MergeAccounts": false,
"ShowOnlyOnline": false,
"HideFeedbackBar": false
},
"AdvancedOptions": false,
"UniqueConfigurationID": ""
}`
conf := ApplicationConfig{
Accounts: []*Account{
&Account{
Account: "bob@riseup.net",
Peers: []*Peer{
&Peer{
UserID: "bob@riseup.net",
Nickname: "boby",
},
},
AlwaysEncrypt: true,
},
&Account{
Account: "bob@riseup.net",
},
},
}
contents, err := json.MarshalIndent(conf, "", "\t")
c.Assert(err, IsNil)
c.Assert(string(contents), Equals, expected)
}
func (s *ConfigXmppSuite) TestFindConfigFile(c *C) {
conf := findConfigFile("")
if strings.HasSuffix(conf, ".enc") {
c.Assert(conf, Equals, os.Getenv("HOME")+"/.config/coyim/accounts.json.enc")
} else {
c.Assert(conf, Equals, os.Getenv("HOME")+"/.config/coyim/accounts.json")
}
}
|