tree: 5ffc50f3cea98aacf54edae1a3803bff916aa4d3 [path history] [tgz]
  1. cpp/
  2. dart/
  3. example/
  4. golang/
  5. ir/
  6. llcpp/
  7. mixer/
  8. parser/
  9. rust/
  10. transformer/
  11. BUILD.gn
  12. gidl.gni
  13. main.go
  14. OWNERS
  15. README.md
tools/fidl/gidl/README.md

GIDL

GIDL is a code generation tool to create Golden FIDL Tests. It generates code that tests whether FIDL bindings correctly encode and decode FIDL to/from the wire format. Standard .fidl files define the FIDL data structures, and .gidl files use those data structures and define the expected bytes for the wire-format. The gidl tool reads theses .gidl files, and outputs conformance tests that verifies the FIDL definitions match their expected wire-format bytes.

GIDL supports multiple languages, and will generate a conformance test for each supported language.

Using GIDL

The input files for GIDL are at <//tools/fidl/gidl-conformance-suite/>. That directory contains a .gidl file and multiple .fidl files.

Before building and running tests, be sure that you have the configured the build to include the tests bundle. For example, if using the core product configuration and x64 architecture:

fx set core.x64 --with //bundles:tests

The conformance tests will be generated at build-time and included in tests for each language / binding.

  • Go:

    • Build: fx build src/tests/fidl_go_conformance:fidl_go_conformance_tests
    • Run: fx run-test fidl_go_conformance -- -test.v
  • C++ (HLCPP):

    • Build: fx build sdk/lib/fidl/cpp:conformance_test
    • Run: fx run-test fidl_tests
    • Build (host): fx build host_x64/fidl_cpp_host_conformance_test
    • Run (host): fx run-host-tests fidl_cpp_host_conformance_test
  • C++ (LLCPP):

    • Build: fx build src/lib/fidl/llcpp/tests:fidl_llcpp_conformance_test
    • Run: fx run-test fidl_llcpp_conformance_test
  • Rust:

    • Build: fx build src/lib/fidl/rust/fidl_tests
    • Run: fx run-test rust_fidl_tests
  • Dart:

    • Build: fx build topaz/bin/fidl_bindings_test/test:fidl_bindings_test
    • Run: fx run-test fidl_bindings_test
  • Transformer:

    • Build: fx build src/tests/fidl_transformer:tests
    • Run: fx run-test fidl_transformer_conformance
    • Run (host): fx run-host-tests fidl_transformer_host_tests

Writing Conformance Tests

There are three kinds of tests which can be expressed. We describe them below.

Success

A success test case captures a value (optionally with handles), and its wire format representation.

Here is an example:

// Assuming the following FIDL definition:
//
// struct OneStringOfMaxLengthFive {
//     string:5 the_string;
// };

success("OneStringOfMaxLengthFive-empty") {
    value = OneStringOfMaxLengthFive {
        the_string: "",
    }
    bytes = {
        0, 0, 0, 0, 0, 0, 0, 0, // length
        255, 255, 255, 255, 255, 255, 255, 255, // alloc present
    }
}

From this description, the following must be verified:

  • Encoding of the value into bytes
  • Decoding of the bytes into the value
  • Round-trips from value to bytes, back to value, back to bytes

Fails to Encode

GIDL does not currently output conformance tests for fails_to_encode cases.

A fails_to_encode test case captures a value (optionally with handles), which fails to encode (e.g. constraints not met).

Here is an example:

fails_to_encode("OneStringOfMaxLengthFive-too-long") {
    value = OneStringOfMaxLengthFive {
        the_string: "bonjour", // 6 characters
    }
    err = FIDL_STRING_TOO_LONG
}

From this description, the following must be verified:

  • Encoding of the value fails
  • Failure triggers exactly the expected error

Fails to Decode

GIDL does not currently output conformance tests for fails_to_decode cases.

A fails_to_decode test case captures bytes encoding (optionally with handles), which fails to decode (e.g. incorrect wire encoding).

Here is an example:

fails_to_decode("OneStringOfMaxLengthFive-wrong-length") {
    bytes = {
        1, 0, 0, 0, 0, 0, 0, 0, // length
        255, 255, 255, 255, 255, 255, 255, 255, // alloc present
        // one character missing
    }
    err = FIDL_STRING_INCORRECT_SIZE
}

From this description, the following must be verified:

  • Decoding of the bytes encoding fails
  • Failure triggers exactly the expected error