2024-09-09 16:27:54 +00:00
|
|
|
package gigaparsec_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"git.codemonkeysoftware.net/b/gigaparsec"
|
|
|
|
"git.codemonkeysoftware.net/b/gigaparsec/cursor"
|
2024-09-13 16:38:47 +00:00
|
|
|
ptest "git.codemonkeysoftware.net/b/gigaparsec/test"
|
2024-09-13 17:17:32 +00:00
|
|
|
"git.codemonkeysoftware.net/b/gigaparsec/test/generator"
|
2024-09-09 16:27:54 +00:00
|
|
|
"github.com/shoenig/test"
|
2024-09-11 16:25:45 +00:00
|
|
|
"github.com/shoenig/test/must"
|
2024-09-09 16:27:54 +00:00
|
|
|
"pgregory.net/rapid"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Todo(t *testing.T) {
|
|
|
|
t.Errorf("TODO")
|
|
|
|
}
|
|
|
|
|
2024-09-09 21:18:27 +00:00
|
|
|
func not[T any](pred func(T) bool) func(T) bool {
|
2024-09-09 16:27:54 +00:00
|
|
|
return func(x T) bool { return !pred(x) }
|
|
|
|
}
|
|
|
|
|
2024-09-10 15:30:54 +00:00
|
|
|
func hasPrefix(prefix []byte) func([]byte) bool {
|
|
|
|
return func(b []byte) bool { return bytes.HasPrefix(b, prefix) }
|
|
|
|
}
|
|
|
|
|
2024-09-09 16:27:54 +00:00
|
|
|
func TestSlice(t *testing.T) {
|
2024-09-11 16:25:45 +00:00
|
|
|
assertParseFails := func(t rapid.TB, input []byte, p gigaparsec.Parser[byte, []byte]) {
|
2024-09-09 21:13:37 +00:00
|
|
|
t.Helper()
|
|
|
|
start := gigaparsec.MakeState(cursor.NewSlice(input))
|
2024-09-11 16:25:45 +00:00
|
|
|
result, err := p(start)
|
|
|
|
must.NoError(t, err)
|
|
|
|
failed, consumed, _ := result.Failed()
|
|
|
|
test.True(t, failed)
|
|
|
|
test.False(t, consumed)
|
2024-09-09 21:13:37 +00:00
|
|
|
if t.Failed() {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-09 16:27:54 +00:00
|
|
|
t.Run("fails with wrong contents", rapid.MakeCheck(func(t *rapid.T) {
|
|
|
|
s := rapid.SliceOfN(rapid.Byte(), 1, -1).Draw(t, "s")
|
|
|
|
input := rapid.SliceOfN(rapid.Byte(), len(s), -1).
|
2024-09-10 15:30:54 +00:00
|
|
|
Filter(not(hasPrefix(s))).Draw(t, "input")
|
2024-09-18 02:10:19 +00:00
|
|
|
assertParseFails(t, input, gigaparsec.MatchSlice(s))
|
2024-09-09 16:27:54 +00:00
|
|
|
}))
|
|
|
|
t.Run("fails at end of input", rapid.MakeCheck(func(t *rapid.T) {
|
|
|
|
s := rapid.SliceOfN(rapid.Byte(), 1, -1).Draw(t, "s")
|
|
|
|
inputLen := rapid.IntRange(0, len(s)-1).Draw(t, "inputLen")
|
|
|
|
input := s[:inputLen]
|
2024-09-18 02:10:19 +00:00
|
|
|
assertParseFails(t, input, gigaparsec.MatchSlice(s))
|
2024-09-09 16:27:54 +00:00
|
|
|
}))
|
2024-09-13 16:38:47 +00:00
|
|
|
t.Run("fails when read fails", rapid.MakeCheck(func(t *rapid.T) {
|
2024-09-13 17:17:32 +00:00
|
|
|
expectedErr := generator.Error().Draw(t, "expectedErr")
|
2024-09-13 17:02:13 +00:00
|
|
|
c := ptest.ErrCursor[byte](expectedErr)
|
2024-09-13 16:38:47 +00:00
|
|
|
s := rapid.SliceOfN(rapid.Byte(), 0, 100).Draw(t, "s")
|
2024-09-18 02:10:19 +00:00
|
|
|
result, err := gigaparsec.MatchSlice(s)(gigaparsec.MakeState(c))
|
2024-09-13 16:44:30 +00:00
|
|
|
failed, _, _ := result.Failed()
|
2024-09-13 16:38:47 +00:00
|
|
|
test.ErrorIs(t, err, expectedErr)
|
2024-09-13 16:44:30 +00:00
|
|
|
test.True(t, failed)
|
2024-09-13 16:38:47 +00:00
|
|
|
}))
|
2024-09-09 16:27:54 +00:00
|
|
|
t.Run("succeeds when contents match", rapid.MakeCheck(func(t *rapid.T) {
|
|
|
|
input := rapid.SliceOfN(rapid.Byte(), 1, -1).Draw(t, "input")
|
|
|
|
sLen := rapid.IntRange(0, len(input)).Draw(t, "sLen")
|
|
|
|
s := input[:sLen]
|
2024-09-09 21:00:17 +00:00
|
|
|
start := gigaparsec.MakeState(cursor.NewSlice(input))
|
|
|
|
|
2024-09-18 02:10:19 +00:00
|
|
|
result, err := gigaparsec.MatchSlice(s)(start)
|
2024-09-11 16:25:45 +00:00
|
|
|
must.NoError(t, err)
|
|
|
|
succeeded, consumed, value, next, _ := result.Succeeded()
|
|
|
|
test.True(t, succeeded)
|
|
|
|
test.True(t, consumed)
|
|
|
|
test.SliceEqOp(t, s, value)
|
|
|
|
test.EqOp(t, uint64(len(s)), next.Pos())
|
2024-09-09 16:27:54 +00:00
|
|
|
}))
|
|
|
|
}
|
2024-09-10 22:46:31 +00:00
|
|
|
|
|
|
|
func TestChoose(t *testing.T) {
|
|
|
|
Todo(t)
|
|
|
|
}
|
2024-09-10 22:58:34 +00:00
|
|
|
|
|
|
|
func TestBind(t *testing.T) {
|
2024-09-13 20:50:12 +00:00
|
|
|
t.Run("fails without constructing second parser if the first parser fails", Todo)
|
|
|
|
t.Run("returns an error without constructing second parser if the first returns an error", Todo)
|
|
|
|
t.Run("fails if the second parser fails", Todo)
|
|
|
|
t.Run("returns an error if the second parser returns an error", Todo)
|
|
|
|
t.Run("succeeds if both parsers succeed", rapid.MakeCheck(func(t *rapid.T) {
|
|
|
|
// s := rapid.SliceOfN(rapid.Byte(), 0, 100)
|
|
|
|
t.Errorf("TODO")
|
|
|
|
}))
|
2024-09-18 02:10:19 +00:00
|
|
|
/*
|
|
|
|
If the first parser fails, then consumption depends on the first parser.
|
|
|
|
If the first parser succeeds, then bound parser consumes iff either parser succeeded.
|
|
|
|
For BindN:
|
|
|
|
If all parsers before i succeed, bound parser consumes if any parser before i consumed.
|
|
|
|
*/
|
2024-09-13 20:50:12 +00:00
|
|
|
t.Run("consumption on success", rapid.MakeCheck(func(t *rapid.T) {
|
|
|
|
makeParser := func(consume bool) gigaparsec.Parser[byte, struct{}] {
|
|
|
|
return func(s gigaparsec.State[byte]) (gigaparsec.Result[byte, struct{}], error) {
|
|
|
|
return gigaparsec.Succeed(consume, struct{}{}, s, gigaparsec.MessageOK(0)), nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pConsume := rapid.Bool().Draw(t, "pShouldConsume")
|
|
|
|
qConsume := rapid.Bool().Draw(t, "qShouldConsume")
|
|
|
|
p := makeParser(pConsume)
|
|
|
|
q := func(struct{}) gigaparsec.Parser[byte, struct{}] { return makeParser(qConsume) }
|
|
|
|
|
|
|
|
result, err := gigaparsec.Bind(p, q)(gigaparsec.MakeState(cursor.NewSlice([]byte{})))
|
|
|
|
must.NoError(t, err)
|
|
|
|
must.EqOp(t, pConsume || qConsume, result.Consumed())
|
|
|
|
}))
|
2024-09-10 22:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReturn(t *testing.T) {
|
|
|
|
Todo(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMap(t *testing.T) {
|
|
|
|
Todo(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSatisfy(t *testing.T) {
|
|
|
|
Todo(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Try(t *testing.T) {
|
|
|
|
Todo(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLabel(t *testing.T) {
|
|
|
|
Todo(t)
|
|
|
|
}
|
2024-09-11 01:00:44 +00:00
|
|
|
|
|
|
|
func TestEnd(t *testing.T) {
|
|
|
|
Todo(t)
|
|
|
|
}
|