作者:carriercom
项目:asciinem
func TestConfig_ApiUrl(t *testing.T) {
var tests = []struct {
cfg util.ConfigFile
env map[string]string
expected string
}{
{
util.ConfigFile{},
map[string]string{},
"https://asciinema.org",
},
{
util.ConfigFile{API: util.ConfigAPI{URL: "https://asciinema.example.com"}},
map[string]string{},
"https://asciinema.example.com",
},
{
util.ConfigFile{API: util.ConfigAPI{URL: "https://asciinema.example.com"}},
map[string]string{"ASCIINEMA_API_URL": "http://localhost:3000"},
"http://localhost:3000",
},
}
for _, test := range tests {
cfg := util.Config{&test.cfg, test.env}
actual := cfg.ApiUrl()
if actual != test.expected {
t.Errorf(`expected "%v", got "%v"`, test.expected, actual)
}
}
}
作者:carriercom
项目:asciinem
func TestConfig_RecordCommand(t *testing.T) {
var tests = []struct {
cfg util.ConfigFile
env map[string]string
expected string
}{
{
util.ConfigFile{},
map[string]string{},
"/bin/sh",
},
{
util.ConfigFile{},
map[string]string{"SHELL": "/bin/bash"},
"/bin/bash",
},
{
util.ConfigFile{Record: util.ConfigRecord{Command: "foo -l"}},
map[string]string{"SHELL": "/bin/bash"},
"foo -l",
},
}
for _, test := range tests {
cfg := util.Config{&test.cfg, test.env}
actual := cfg.RecordCommand()
if actual != test.expected {
t.Errorf(`expected "%v", got "%v"`, test.expected, actual)
}
}
}
作者:carriercom
项目:asciinem
func TestConfig_ApiToken(t *testing.T) {
var tests = []struct {
cfg util.ConfigFile
expected string
}{
{
util.ConfigFile{},
"",
},
{
util.ConfigFile{API: util.ConfigAPI{Token: "foo"}},
"foo",
},
{
util.ConfigFile{User: util.ConfigUser{Token: "foo"}},
"foo",
},
}
for _, test := range tests {
cfg := util.Config{&test.cfg, nil}
actual := cfg.ApiToken()
if actual != test.expected {
t.Errorf(`expected "%v", got "%v"`, test.expected, actual)
}
}
}
作者:carriercom
项目:asciinem
func TestConfig_PlayMaxWait(t *testing.T) {
var tests = []struct {
cfg util.ConfigFile
expected float64
}{
{
util.ConfigFile{},
0,
},
{
util.ConfigFile{Play: util.ConfigPlay{MaxWait: 1.23456}},
1.23456,
},
}
for _, test := range tests {
cfg := util.Config{&test.cfg, nil}
actual := cfg.PlayMaxWait()
if actual != test.expected {
t.Errorf(`expected "%v", got "%v"`, test.expected, actual)
}
}
}
作者:carriercom
项目:asciinem
func TestConfig_RecordYes(t *testing.T) {
var tests = []struct {
cfg util.ConfigFile
expected bool
}{
{
util.ConfigFile{},
false,
},
{
util.ConfigFile{Record: util.ConfigRecord{Yes: true}},
true,
},
}
for _, test := range tests {
cfg := util.Config{&test.cfg, nil}
actual := cfg.RecordYes()
if actual != test.expected {
t.Errorf(`expected "%v", got "%v"`, test.expected, actual)
}
}
}
作者:pjozo
项目:asciinem
func TestConfig_RecordMaxWait(t *testing.T) {
var tests = []struct {
cfg util.ConfigFile
expected uint
}{
{
util.ConfigFile{},
0,
},
{
util.ConfigFile{Record: util.ConfigRecord{MaxWait: 1}},
1,
},
}
for _, test := range tests {
cfg := util.Config{&test.cfg, nil}
actual := cfg.RecordMaxWait()
if actual != test.expected {
t.Errorf(`expected "%v", got "%v"`, test.expected, actual)
}
}
}