aboutsummaryrefslogtreecommitdiff
path: root/util_test.go
blob: 4ed1dde9b5927f322c123f1f994d37e56865c563 (plain)
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
// SPDX-FileCopyrightText: © 2022 Grégoire Duchêne <gduchene@awhk.org>
// SPDX-License-Identifier: ISC

package core_test

import (
	"errors"
	"testing"

	"github.com/google/go-cmp/cmp"
	"github.com/google/go-cmp/cmp/cmpopts"

	"go.awhk.org/core"
)

func TestMapKeys(s *testing.T) {
	t := core.T{T: s, Options: cmp.Options{sortStrings}}

	t.AssertEqual(([]string)(nil), core.MapKeys[map[string]int](nil))
	t.AssertEqual(([]string)(nil), core.MapKeys(map[string]int{}))
	t.AssertEqual([]string{"bar", "foo"}, core.MapKeys(map[string]int{"foo": 1, "bar": 2}))
}

func TestMust(s *testing.T) {
	t := core.T{T: s, Options: []cmp.Option{cmpopts.EquateErrors()}}

	err := errors.New("some error")
	t.AssertPanicsWith(func() { core.Must(42, err) }, err)
	t.AssertNotPanics(func() { core.Must(42, nil) })
	t.AssertEqual(42, core.Must(42, nil))
}

func TestSliceMap(s *testing.T) {
	t := core.T{T: s}

	t.AssertEqual(([]int)(nil), core.SliceMap(func(int) int { return 0 }, ([]int)(nil)))
	t.AssertEqual(([]int)(nil), core.SliceMap(func(int) int { return 0 }, []int{}))
	t.AssertEqual([]int{42, 84}, core.SliceMap(func(x int) int { return x * 2 }, []int{21, 42}))
}

var sortStrings = cmpopts.SortSlices(func(s, t string) bool { return s <= t })