2022-08-08 17:01:41 +00:00
|
|
|
package opt_test
|
|
|
|
|
|
|
|
import (
|
2024-07-04 16:54:41 +00:00
|
|
|
"github.com/reiver/go-opt"
|
2022-08-08 17:01:41 +00:00
|
|
|
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestOptional_Get_string(t *testing.T) {
|
|
|
|
|
|
|
|
tests := []struct{
|
|
|
|
Optional opt.Optional[string]
|
|
|
|
ExpectedValue string
|
|
|
|
ExpectedSomething bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Optional: opt.Nothing[string](),
|
|
|
|
ExpectedValue: "",
|
|
|
|
ExpectedSomething: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
Optional: opt.Something(""),
|
|
|
|
ExpectedValue: "",
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something("once twice thrice fource"),
|
|
|
|
ExpectedValue: "once twice thrice fource",
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something("😈"),
|
|
|
|
ExpectedValue: "😈",
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something("۰۱۲۳۴۵۶۷۸۹"),
|
|
|
|
ExpectedValue: "۰۱۲۳۴۵۶۷۸۹",
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for testNumber, test := range tests {
|
|
|
|
|
|
|
|
value, something := test.Optional.Get()
|
|
|
|
|
|
|
|
{
|
|
|
|
expected := test.ExpectedSomething
|
|
|
|
actual := something
|
|
|
|
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("For test #%d, the actual something-flag is not what was expected.", testNumber)
|
|
|
|
t.Logf("EXPECTED FLAG: %t", expected)
|
|
|
|
t.Logf("ACTUAL FLAG: %t", actual)
|
|
|
|
t.Logf("OPTIONAL: %#v", test.Optional)
|
|
|
|
/////////////////////// CONTINUE
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
expected := test.ExpectedValue
|
|
|
|
actual := value
|
|
|
|
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("For test #%d, the actual value is not what was expected.", testNumber)
|
|
|
|
t.Logf("EXPECTED VALUE: %q", expected)
|
|
|
|
t.Logf("ACTUAL VALUE: %q", actual)
|
|
|
|
t.Logf("OPTIONAL: %#v", test.Optional)
|
|
|
|
/////////////////////// CONTINUE
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOptional_Get_int8(t *testing.T) {
|
|
|
|
|
|
|
|
tests := []struct{
|
|
|
|
Optional opt.Optional[int8]
|
|
|
|
ExpectedValue int8
|
|
|
|
ExpectedSomething bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Optional: opt.Nothing[int8](),
|
|
|
|
ExpectedValue: 0,
|
|
|
|
ExpectedSomething: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-127)),
|
|
|
|
ExpectedValue: int8(-127),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-126)),
|
|
|
|
ExpectedValue: int8(-126),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-125)),
|
|
|
|
ExpectedValue: int8(-125),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-124)),
|
|
|
|
ExpectedValue: int8(-124),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-123)),
|
|
|
|
ExpectedValue: int8(-123),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-122)),
|
|
|
|
ExpectedValue: int8(-122),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-121)),
|
|
|
|
ExpectedValue: int8(-121),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-120)),
|
|
|
|
ExpectedValue: int8(-120),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-9)),
|
|
|
|
ExpectedValue: int8(-9),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-8)),
|
|
|
|
ExpectedValue: int8(-8),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-7)),
|
|
|
|
ExpectedValue: int8(-7),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-6)),
|
|
|
|
ExpectedValue: int8(-6),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-5)),
|
|
|
|
ExpectedValue: int8(-5),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-4)),
|
|
|
|
ExpectedValue: int8(-4),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-3)),
|
|
|
|
ExpectedValue: int8(-3),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-2)),
|
|
|
|
ExpectedValue: int8(-2),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(-1)),
|
|
|
|
ExpectedValue: int8(-1),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(0)),
|
|
|
|
ExpectedValue: int8(0),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(1)),
|
|
|
|
ExpectedValue: int8(1),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(2)),
|
|
|
|
ExpectedValue: int8(2),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(3)),
|
|
|
|
ExpectedValue: int8(3),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(4)),
|
|
|
|
ExpectedValue: int8(4),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(5)),
|
|
|
|
ExpectedValue: int8(5),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(6)),
|
|
|
|
ExpectedValue: int8(6),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(7)),
|
|
|
|
ExpectedValue: int8(7),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(8)),
|
|
|
|
ExpectedValue: int8(8),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(9)),
|
|
|
|
ExpectedValue: int8(9),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(120)),
|
|
|
|
ExpectedValue: int8(120),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(121)),
|
|
|
|
ExpectedValue: int8(121),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(122)),
|
|
|
|
ExpectedValue: int8(122),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(123)),
|
|
|
|
ExpectedValue: int8(123),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(124)),
|
|
|
|
ExpectedValue: int8(124),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(125)),
|
|
|
|
ExpectedValue: int8(125),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(126)),
|
|
|
|
ExpectedValue: int8(126),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(int8(127)),
|
|
|
|
ExpectedValue: int8(127),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for testNumber, test := range tests {
|
|
|
|
|
|
|
|
value, something := test.Optional.Get()
|
|
|
|
|
|
|
|
{
|
|
|
|
expected := test.ExpectedSomething
|
|
|
|
actual := something
|
|
|
|
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("For test #%d, the actual something-flag is not what was expected.", testNumber)
|
|
|
|
t.Logf("EXPECTED FLAG: %t", expected)
|
|
|
|
t.Logf("ACTUAL FLAG: %t", actual)
|
|
|
|
t.Logf("OPTIONAL: %#v", test.Optional)
|
|
|
|
/////////////////////// CONTINUE
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
expected := test.ExpectedValue
|
|
|
|
actual := value
|
|
|
|
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("For test #%d, the actual value is not what was expected.", testNumber)
|
|
|
|
t.Logf("EXPECTED VALUE: %q", expected)
|
|
|
|
t.Logf("ACTUAL VALUE: %q", actual)
|
|
|
|
t.Logf("OPTIONAL: %#v", test.Optional)
|
|
|
|
/////////////////////// CONTINUE
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOptional_Get_uint8(t *testing.T) {
|
|
|
|
|
|
|
|
tests := []struct{
|
|
|
|
Optional opt.Optional[uint8]
|
|
|
|
ExpectedValue uint8
|
|
|
|
ExpectedSomething bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Optional: opt.Nothing[uint8](),
|
|
|
|
ExpectedValue: 0,
|
|
|
|
ExpectedSomething: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
Optional: opt.Something(uint8(0)),
|
|
|
|
ExpectedValue: uint8(0),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(uint8(1)),
|
|
|
|
ExpectedValue: uint8(1),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(uint8(2)),
|
|
|
|
ExpectedValue: uint8(2),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(uint8(254)),
|
|
|
|
ExpectedValue: uint8(254),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Optional: opt.Something(uint8(255)),
|
|
|
|
ExpectedValue: uint8(255),
|
|
|
|
ExpectedSomething: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for testNumber, test := range tests {
|
|
|
|
|
|
|
|
value, something := test.Optional.Get()
|
|
|
|
|
|
|
|
{
|
|
|
|
expected := test.ExpectedSomething
|
|
|
|
actual := something
|
|
|
|
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("For test #%d, the actual something-flag is not what was expected.", testNumber)
|
|
|
|
t.Logf("EXPECTED FLAG: %t", expected)
|
|
|
|
t.Logf("ACTUAL FLAG: %t", actual)
|
|
|
|
t.Logf("OPTIONAL: %#v", test.Optional)
|
|
|
|
/////////////////////// CONTINUE
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
expected := test.ExpectedValue
|
|
|
|
actual := value
|
|
|
|
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("For test #%d, the actual value is not what was expected.", testNumber)
|
|
|
|
t.Logf("EXPECTED VALUE: %q", expected)
|
|
|
|
t.Logf("ACTUAL VALUE: %q", actual)
|
|
|
|
t.Logf("OPTIONAL: %#v", test.Optional)
|
|
|
|
/////////////////////// CONTINUE
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|