termui/events_test.go

38 lines
678 B
Go
Raw Normal View History

2016-11-11 04:25:53 +00:00
// Copyright 2016 Zack Guo <zack.y.guo@gmail.com>. All rights reserved.
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.
package termui
2015-09-18 15:41:44 +00:00
import "testing"
2015-09-18 15:41:44 +00:00
var ps = []string{
"",
"/",
"/a",
"/b",
"/a/c",
"/a/b",
"/a/b/c",
"/a/b/c/d",
"/a/b/c/d/"}
2015-09-18 15:41:44 +00:00
func TestMatchScore(t *testing.T) {
2015-09-21 07:11:58 +00:00
chk := func(a, b string, s bool) {
if c := isPathMatch(a, b); c != s {
t.Errorf("\na:%s\nb:%s\nshould:%t\nactual:%t", a, b, s, c)
2015-09-18 15:41:44 +00:00
}
}
2015-09-21 07:11:58 +00:00
chk(ps[1], ps[1], true)
chk(ps[1], ps[2], true)
chk(ps[2], ps[1], false)
chk(ps[4], ps[1], false)
chk(ps[6], ps[2], false)
chk(ps[4], ps[5], false)
2015-09-18 15:41:44 +00:00
}
func TestCrtEvt(t *testing.T) {
}