Some checks failed
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
Build & Push SDK Proto Builder / build (push) Has been cancelled
40 lines
871 B
Go
40 lines
871 B
Go
package simsx
|
|
|
|
import (
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCollect(t *testing.T) {
|
|
src := []int{1, 2, 3}
|
|
got := Collect(src, func(a int) int { return a * 2 })
|
|
assert.Equal(t, []int{2, 4, 6}, got)
|
|
gotStrings := Collect(src, strconv.Itoa)
|
|
assert.Equal(t, []string{"1", "2", "3"}, gotStrings)
|
|
}
|
|
|
|
func TestFirst(t *testing.T) {
|
|
src := []string{"a", "b"}
|
|
assert.Equal(t, &src[1], First(src, func(a string) bool { return a == "b" }))
|
|
assert.Nil(t, First(src, func(a string) bool { return false }))
|
|
}
|
|
|
|
func TestOneOf(t *testing.T) {
|
|
src := []string{"a", "b"}
|
|
got := OneOf(randMock{next: 1}, src)
|
|
assert.Equal(t, "b", got)
|
|
// test with other type
|
|
src2 := []int{1, 2, 3}
|
|
got2 := OneOf(randMock{next: 2}, src2)
|
|
assert.Equal(t, 3, got2)
|
|
}
|
|
|
|
type randMock struct {
|
|
next int
|
|
}
|
|
|
|
func (x randMock) Intn(n int) int {
|
|
return x.next
|
|
}
|