diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2020-10-02 10:53:47 -0700 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2020-10-02 10:53:47 -0700 |
commit | 5d3cf440e50186bf6a1e841038ac887c2da06141 (patch) | |
tree | 9f4fa21704f63d83a085508308fb340fe7178df7 | |
parent | 8ec8322f091f93a6d5401a3ba9b2a164b28c9aee (diff) | |
download | flatbuffers-5d3cf440e50186bf6a1e841038ac887c2da06141.tar.gz flatbuffers-5d3cf440e50186bf6a1e841038ac887c2da06141.tar.bz2 flatbuffers-5d3cf440e50186bf6a1e841038ac887c2da06141.zip |
Updated Lobster test for optional bools/enums
The codegen for this was already correct, just added more tests
-rw-r--r-- | tests/generate_code.bat | 3 | ||||
-rwxr-xr-x | tests/generate_code.sh | 4 | ||||
-rw-r--r-- | tests/lobstertest.lobster | 45 | ||||
-rw-r--r-- | tests/optional_scalars2_generated.lobster | 204 |
4 files changed, 248 insertions, 8 deletions
diff --git a/tests/generate_code.bat b/tests/generate_code.bat index 33e71680..48fd730a 100644 --- a/tests/generate_code.bat +++ b/tests/generate_code.bat @@ -55,7 +55,8 @@ set TEST_NOINCL_FLAGS=%TEST_BASE_FLAGS% --no-includes --no-fb-import ..\%buildtype%\flatc.exe --cpp %TEST_BASE_FLAGS% --cpp-ptr-type flatbuffers::unique_ptr native_type_test.fbs || goto FAIL @rem Generate the optional scalar code for tests. -..\%buildtype%\flatc.exe --rust --lobster optional_scalars.fbs || goto FAIL +..\%buildtype%\flatc.exe --rust --lobster optional_scalars2.fbs || goto FAIL +..\%buildtype%\flatc.exe --kotlin optional_scalars.fbs || goto FAIL ..\%buildtype%\flatc.exe %TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% --cpp optional_scalars.fbs || goto FAIL @rem Generate the schema evolution tests diff --git a/tests/generate_code.sh b/tests/generate_code.sh index 9dce7bd4..9ccbfe94 100755 --- a/tests/generate_code.sh +++ b/tests/generate_code.sh @@ -53,8 +53,8 @@ $TEST_NOINCL_FLAGS $TEST_CPP_FLAGS $TEST_CS_FLAGS $TEST_JS_TS_FLAGS -o namespace ../flatc --dart monster_extra.fbs # Generate optional scalar code for tests. -../flatc --kotlin --lobster optional_scalars.fbs # These ones have not added optional enum support. -../flatc --rust optional_scalars2.fbs +../flatc --kotlin optional_scalars.fbs # These ones have not added optional enum support. +../flatc --rust --lobster optional_scalars2.fbs ../flatc $TEST_NOINCL_FLAGS $TEST_CPP_FLAGS --cpp optional_scalars.fbs # Generate the schema evolution tests diff --git a/tests/lobstertest.lobster b/tests/lobstertest.lobster index ac42c2e8..33af2331 100644 --- a/tests/lobstertest.lobster +++ b/tests/lobstertest.lobster @@ -14,7 +14,7 @@ import from "../lobster/" import monster_test_generated -import optional_scalars_generated +import optional_scalars2_generated def check_read_buffer(buf): // CheckReadBuffer checks that the given buffer is evaluated correctly as the example Monster. @@ -117,18 +117,53 @@ def test_optional_scalars(): ss.add_just_i8(1) ss.add_maybe_i8(1) ss.add_default_i8(1) + ss.add_just_f64(1.0) + ss.add_maybe_f64(1.0) + ss.add_default_f64(1.0) + ss.add_just_bool(true) + ss.add_maybe_bool(true) + ss.add_default_bool(true) + ss.add_just_enum(optional_scalars_OptionalByte_Two) + ss.add_maybe_enum(optional_scalars_OptionalByte_Two) + ss.add_default_enum(optional_scalars_OptionalByte_Two) b.Finish(ss.end()) return optional_scalars_GetRootAsScalarStuff(b.SizedCopy()) var root = build(true) + assert root.just_i8() == 1 and root.default_i8() == 1 - var maybe_val, maybe_present = root.maybe_i8() - assert maybe_val == 1 and maybe_present == true + var maybe_val_i8, maybe_present_i8 = root.maybe_i8() + assert maybe_val_i8 == 1 and maybe_present_i8 == true + + assert root.just_f64() == 1.0 and root.default_f64() == 1.0 + var maybe_val_f64, maybe_present_f64 = root.maybe_f64() + assert maybe_val_f64 == 1.0 and maybe_present_f64 == true + + assert root.just_bool() == true and root.default_bool() == true + var maybe_val_bool, maybe_present_bool = root.maybe_bool() + assert maybe_val_bool == true and maybe_present_bool == true + + assert root.just_enum() == optional_scalars_OptionalByte_Two and root.default_enum() == optional_scalars_OptionalByte_Two + var maybe_val_enum, maybe_present_enum = root.maybe_enum() + assert maybe_val_enum == optional_scalars_OptionalByte_Two and maybe_present_enum == true root = build(false) + assert root.just_i8() == 0 and root.default_i8() == 42 - maybe_val, maybe_present = root.maybe_i8() - assert maybe_val == 0 and maybe_present == false + maybe_val_i8, maybe_present_i8 = root.maybe_i8() + assert maybe_val_i8 == 0 and maybe_present_i8 == false + + assert root.just_f64() == 0.0 and root.default_f64() == 42.0 + maybe_val_f64, maybe_present_f64 = root.maybe_f64() + assert maybe_val_f64 == 0.0 and maybe_present_f64 == false + + assert root.just_bool() == false and root.default_bool() == true + maybe_val_bool, maybe_present_bool = root.maybe_bool() + assert maybe_val_bool == false and maybe_present_bool == false + + assert root.just_enum() == optional_scalars_OptionalByte_None and root.default_enum() == optional_scalars_OptionalByte_One + maybe_val_enum, maybe_present_enum = root.maybe_enum() + assert maybe_val_enum == optional_scalars_OptionalByte_None and maybe_present_enum == false // Verify that the canonical flatbuffer file (produced by the C++ implementation) diff --git a/tests/optional_scalars2_generated.lobster b/tests/optional_scalars2_generated.lobster new file mode 100644 index 00000000..d0f7aefe --- /dev/null +++ b/tests/optional_scalars2_generated.lobster @@ -0,0 +1,204 @@ +// automatically generated by the FlatBuffers compiler, do not modify +import flatbuffers + +namespace optional_scalars + +enum OptionalByte: + OptionalByte_None = 0 + OptionalByte_One = 1 + OptionalByte_Two = 2 + +class ScalarStuff + +class ScalarStuff : flatbuffers_handle + def just_i8(): + return buf_.flatbuffers_field_int8(pos_, 4, 0) + def maybe_i8(): + return buf_.flatbuffers_field_int8(pos_, 6, 0), buf_.flatbuffers_field_present(pos_, 6) + def default_i8(): + return buf_.flatbuffers_field_int8(pos_, 8, 42) + def just_u8(): + return buf_.flatbuffers_field_int8(pos_, 10, 0) + def maybe_u8(): + return buf_.flatbuffers_field_int8(pos_, 12, 0), buf_.flatbuffers_field_present(pos_, 12) + def default_u8(): + return buf_.flatbuffers_field_int8(pos_, 14, 42) + def just_i16(): + return buf_.flatbuffers_field_int16(pos_, 16, 0) + def maybe_i16(): + return buf_.flatbuffers_field_int16(pos_, 18, 0), buf_.flatbuffers_field_present(pos_, 18) + def default_i16(): + return buf_.flatbuffers_field_int16(pos_, 20, 42) + def just_u16(): + return buf_.flatbuffers_field_int16(pos_, 22, 0) + def maybe_u16(): + return buf_.flatbuffers_field_int16(pos_, 24, 0), buf_.flatbuffers_field_present(pos_, 24) + def default_u16(): + return buf_.flatbuffers_field_int16(pos_, 26, 42) + def just_i32(): + return buf_.flatbuffers_field_int32(pos_, 28, 0) + def maybe_i32(): + return buf_.flatbuffers_field_int32(pos_, 30, 0), buf_.flatbuffers_field_present(pos_, 30) + def default_i32(): + return buf_.flatbuffers_field_int32(pos_, 32, 42) + def just_u32(): + return buf_.flatbuffers_field_int32(pos_, 34, 0) + def maybe_u32(): + return buf_.flatbuffers_field_int32(pos_, 36, 0), buf_.flatbuffers_field_present(pos_, 36) + def default_u32(): + return buf_.flatbuffers_field_int32(pos_, 38, 42) + def just_i64(): + return buf_.flatbuffers_field_int64(pos_, 40, 0) + def maybe_i64(): + return buf_.flatbuffers_field_int64(pos_, 42, 0), buf_.flatbuffers_field_present(pos_, 42) + def default_i64(): + return buf_.flatbuffers_field_int64(pos_, 44, 42) + def just_u64(): + return buf_.flatbuffers_field_int64(pos_, 46, 0) + def maybe_u64(): + return buf_.flatbuffers_field_int64(pos_, 48, 0), buf_.flatbuffers_field_present(pos_, 48) + def default_u64(): + return buf_.flatbuffers_field_int64(pos_, 50, 42) + def just_f32(): + return buf_.flatbuffers_field_float32(pos_, 52, 0.0) + def maybe_f32(): + return buf_.flatbuffers_field_float32(pos_, 54, 0), buf_.flatbuffers_field_present(pos_, 54) + def default_f32(): + return buf_.flatbuffers_field_float32(pos_, 56, 42.0) + def just_f64(): + return buf_.flatbuffers_field_float64(pos_, 58, 0.0) + def maybe_f64(): + return buf_.flatbuffers_field_float64(pos_, 60, 0), buf_.flatbuffers_field_present(pos_, 60) + def default_f64(): + return buf_.flatbuffers_field_float64(pos_, 62, 42.0) + def just_bool(): + return buf_.flatbuffers_field_int8(pos_, 64, 0) + def maybe_bool(): + return buf_.flatbuffers_field_int8(pos_, 66, 0), buf_.flatbuffers_field_present(pos_, 66) + def default_bool(): + return buf_.flatbuffers_field_int8(pos_, 68, 1) + def just_enum(): + return OptionalByte(buf_.flatbuffers_field_int8(pos_, 70, 0)) + def maybe_enum(): + return OptionalByte(buf_.flatbuffers_field_int8(pos_, 72, 0)), buf_.flatbuffers_field_present(pos_, 72) + def default_enum(): + return OptionalByte(buf_.flatbuffers_field_int8(pos_, 74, 1)) + +def GetRootAsScalarStuff(buf:string): return ScalarStuff { buf, buf.flatbuffers_indirect(0) } + +struct ScalarStuffBuilder: + b_:flatbuffers_builder + def start(): + b_.StartObject(36) + return this + def add_just_i8(just_i8:int): + b_.PrependInt8Slot(0, just_i8, 0) + return this + def add_maybe_i8(maybe_i8:int): + b_.PrependInt8Slot(1, maybe_i8) + return this + def add_default_i8(default_i8:int): + b_.PrependInt8Slot(2, default_i8, 42) + return this + def add_just_u8(just_u8:int): + b_.PrependUint8Slot(3, just_u8, 0) + return this + def add_maybe_u8(maybe_u8:int): + b_.PrependUint8Slot(4, maybe_u8) + return this + def add_default_u8(default_u8:int): + b_.PrependUint8Slot(5, default_u8, 42) + return this + def add_just_i16(just_i16:int): + b_.PrependInt16Slot(6, just_i16, 0) + return this + def add_maybe_i16(maybe_i16:int): + b_.PrependInt16Slot(7, maybe_i16) + return this + def add_default_i16(default_i16:int): + b_.PrependInt16Slot(8, default_i16, 42) + return this + def add_just_u16(just_u16:int): + b_.PrependUint16Slot(9, just_u16, 0) + return this + def add_maybe_u16(maybe_u16:int): + b_.PrependUint16Slot(10, maybe_u16) + return this + def add_default_u16(default_u16:int): + b_.PrependUint16Slot(11, default_u16, 42) + return this + def add_just_i32(just_i32:int): + b_.PrependInt32Slot(12, just_i32, 0) + return this + def add_maybe_i32(maybe_i32:int): + b_.PrependInt32Slot(13, maybe_i32) + return this + def add_default_i32(default_i32:int): + b_.PrependInt32Slot(14, default_i32, 42) + return this + def add_just_u32(just_u32:int): + b_.PrependUint32Slot(15, just_u32, 0) + return this + def add_maybe_u32(maybe_u32:int): + b_.PrependUint32Slot(16, maybe_u32) + return this + def add_default_u32(default_u32:int): + b_.PrependUint32Slot(17, default_u32, 42) + return this + def add_just_i64(just_i64:int): + b_.PrependInt64Slot(18, just_i64, 0) + return this + def add_maybe_i64(maybe_i64:int): + b_.PrependInt64Slot(19, maybe_i64) + return this + def add_default_i64(default_i64:int): + b_.PrependInt64Slot(20, default_i64, 42) + return this + def add_just_u64(just_u64:int): + b_.PrependUint64Slot(21, just_u64, 0) + return this + def add_maybe_u64(maybe_u64:int): + b_.PrependUint64Slot(22, maybe_u64) + return this + def add_default_u64(default_u64:int): + b_.PrependUint64Slot(23, default_u64, 42) + return this + def add_just_f32(just_f32:float): + b_.PrependFloat32Slot(24, just_f32, 0.0) + return this + def add_maybe_f32(maybe_f32:float): + b_.PrependFloat32Slot(25, maybe_f32) + return this + def add_default_f32(default_f32:float): + b_.PrependFloat32Slot(26, default_f32, 42.0) + return this + def add_just_f64(just_f64:float): + b_.PrependFloat64Slot(27, just_f64, 0.0) + return this + def add_maybe_f64(maybe_f64:float): + b_.PrependFloat64Slot(28, maybe_f64) + return this + def add_default_f64(default_f64:float): + b_.PrependFloat64Slot(29, default_f64, 42.0) + return this + def add_just_bool(just_bool:int): + b_.PrependBoolSlot(30, just_bool, 0) + return this + def add_maybe_bool(maybe_bool:int): + b_.PrependBoolSlot(31, maybe_bool) + return this + def add_default_bool(default_bool:int): + b_.PrependBoolSlot(32, default_bool, 1) + return this + def add_just_enum(just_enum:OptionalByte): + b_.PrependInt8Slot(33, just_enum, 0) + return this + def add_maybe_enum(maybe_enum:OptionalByte): + b_.PrependInt8Slot(34, maybe_enum) + return this + def add_default_enum(default_enum:OptionalByte): + b_.PrependInt8Slot(35, default_enum, 1) + return this + def end(): + return b_.EndObject() + |