2019-04-20 01:48:45 +08:00
|
|
|
package vals
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-12-24 04:00:59 +08:00
|
|
|
"github.com/elves/elvish/pkg/tt"
|
|
|
|
"github.com/elves/elvish/pkg/util"
|
2019-04-20 01:48:45 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// An implementation of Iterator.
|
|
|
|
type iterator struct{ elements []interface{} }
|
|
|
|
|
|
|
|
func (i iterator) Iterate(f func(interface{}) bool) {
|
|
|
|
util.Feed(f, i.elements...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// A non-implementation of Iterator.
|
|
|
|
type nonIterator struct{}
|
|
|
|
|
|
|
|
func TestCanIterate(t *testing.T) {
|
|
|
|
tt.Test(t, tt.Fn("CanIterate", CanIterate), tt.Table{
|
|
|
|
Args("foo").Rets(true),
|
|
|
|
Args(MakeList("foo", "bar")).Rets(true),
|
|
|
|
Args(iterator{vs("a", "b")}).Rets(true),
|
|
|
|
Args(nonIterator{}).Rets(false),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCollect(t *testing.T) {
|
|
|
|
tt.Test(t, tt.Fn("Collect", Collect), tt.Table{
|
|
|
|
Args("foo").Rets(vs("f", "o", "o"), nil),
|
|
|
|
Args(MakeList("foo", "bar")).Rets(vs("foo", "bar"), nil),
|
|
|
|
Args(iterator{vs("a", "b")}).Rets(vs("a", "b"), nil),
|
2020-01-07 07:02:26 +08:00
|
|
|
Args(nonIterator{}).Rets(vs(), cannotIterate{"!!vals.nonIterator"}),
|
2019-04-20 01:48:45 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate is tested indirectly by the test against Iterate.
|