|
@@ -43,11 +43,11 @@ func DryAttributeTest(t *testing.T, attr Attr) {
|
|
expect = attr.Code + sent + attr.Code
|
|
expect = attr.Code + sent + attr.Code
|
|
got = attr.Func(sent)
|
|
got = attr.Func(sent)
|
|
if got != expect {
|
|
if got != expect {
|
|
- t.Errorf("%s: Got %#v, expected %#v", attr.Name, got, expect)
|
|
|
|
|
|
+ t.Errorf("%s: Got %q, expected %q", attr.Name, got, expect)
|
|
}
|
|
}
|
|
plain = Stripper(got)
|
|
plain = Stripper(got)
|
|
if plain != sent {
|
|
if plain != sent {
|
|
- t.Errorf("%s: Got %#v, expected %#v", attr.Name, got, expect)
|
|
|
|
|
|
+ t.Errorf("%s: stripped Got %q, expected %q", attr.Name, plain, sent)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -56,103 +56,22 @@ func TestAttributes(t *testing.T) {
|
|
Attrs := []Attr{
|
|
Attrs := []Attr{
|
|
{"Bold", Bold, "\x02"},
|
|
{"Bold", Bold, "\x02"},
|
|
{"Ttalics", Italics, "\x1d"},
|
|
{"Ttalics", Italics, "\x1d"},
|
|
|
|
+ {"Underline", Underline, "\x1f"},
|
|
|
|
+ {"Strike", Strike, "\x1e"},
|
|
|
|
+ {"Reverse", Reverse, "\x16"},
|
|
|
|
+ {"Monospace", Monospace, "\x11"},
|
|
}
|
|
}
|
|
|
|
|
|
for _, attr := range Attrs {
|
|
for _, attr := range Attrs {
|
|
DryAttributeTest(t, attr)
|
|
DryAttributeTest(t, attr)
|
|
}
|
|
}
|
|
- /*
|
|
|
|
- var sent string
|
|
|
|
- var expect string
|
|
|
|
- var got string
|
|
|
|
- var plain string
|
|
|
|
- for sent, expect = range map[string]string{"One": "\x02One\x02",
|
|
|
|
- "Two": "\x02Two\x02",
|
|
|
|
- "Three": "\x02Three\x02"} {
|
|
|
|
- got = Bold(sent)
|
|
|
|
- if got != expect {
|
|
|
|
- t.Errorf("Got %#v, expected %#v", got, expect)
|
|
|
|
- }
|
|
|
|
- plain = Stripper(got)
|
|
|
|
- if plain != sent {
|
|
|
|
- t.Errorf("Got %#v, expected %#v", plain, sent)
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- */
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func TestItalics(t *testing.T) {
|
|
|
|
- var sent string
|
|
|
|
- var expect string
|
|
|
|
- var got string
|
|
|
|
- var plain string
|
|
|
|
- for sent, expect = range map[string]string{"One": "\x1dOne\x1d",
|
|
|
|
- "Two": "\x1dTwo\x1d",
|
|
|
|
- "Three": "\x1dThree\x1d"} {
|
|
|
|
- got = Italics(sent)
|
|
|
|
- if got != expect {
|
|
|
|
- t.Errorf("Got %#v, expected %#v", got, expect)
|
|
|
|
- }
|
|
|
|
- plain = Stripper(got)
|
|
|
|
- if plain != sent {
|
|
|
|
- t.Errorf("Got %s, expected %s", plain, sent)
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func TestUnderline(t *testing.T) {
|
|
|
|
- var sent string
|
|
|
|
- var expect string
|
|
|
|
- var got string
|
|
|
|
- var plain string
|
|
|
|
- for sent, expect = range map[string]string{"One": "\x16One\x16",
|
|
|
|
- "Two": "\x16Two\x16",
|
|
|
|
- "Three": "\x16Three\x16"} {
|
|
|
|
- got = Underline(sent)
|
|
|
|
- if got != expect {
|
|
|
|
- t.Errorf("Got %#v, expected %#v", got, expect)
|
|
|
|
- }
|
|
|
|
- plain = Stripper(got)
|
|
|
|
- if plain != sent {
|
|
|
|
- t.Errorf("Got %#v, expected %#v", plain, sent)
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-func TestStrike(t *testing.T) {
|
|
|
|
- var sent string
|
|
|
|
- var expect string
|
|
|
|
- var got string
|
|
|
|
- var plain string
|
|
|
|
- for sent, expect = range map[string]string{"One": "\x1eOne\x1e",
|
|
|
|
- "Two": "\x1eTwo\x1e",
|
|
|
|
- "Three": "\x1eThree\x1e"} {
|
|
|
|
- got = Strike(sent)
|
|
|
|
- if got != expect {
|
|
|
|
- t.Errorf("Got %#v, expected %#v", got, expect)
|
|
|
|
- }
|
|
|
|
- plain = Stripper(got)
|
|
|
|
- if plain != sent {
|
|
|
|
- t.Errorf("Got %#v, expected %#v", plain, sent)
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
|
|
+/*
|
|
|
|
+func TestColor(t *testing.T) {
|
|
|
|
+ var tests map[int]string {
|
|
|
|
+ 1: "\x0301%s\x0f",
|
|
|
|
|
|
-func TestMono(t *testing.T) {
|
|
|
|
- var sent string
|
|
|
|
- var expect string
|
|
|
|
- var got string
|
|
|
|
- var plain string
|
|
|
|
- for sent, expect = range map[string]string{"One": "\x11One\x11",
|
|
|
|
- "Two": "\x11Two\x11",
|
|
|
|
- "Three": "\x11Three\x11"} {
|
|
|
|
- got = Monospace(sent)
|
|
|
|
- if got != expect {
|
|
|
|
- t.Errorf("Got %#v, expected %#v", got, expect)
|
|
|
|
- }
|
|
|
|
- plain = Stripper(got)
|
|
|
|
- if plain != sent {
|
|
|
|
- t.Errorf("Got %#v, expected %#v", plain, sent)
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+*/
|