Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
207 lines
8.0 KiB
207 lines
8.0 KiB
// Protocol Buffers - Google's data interchange format |
|
// Copyright 2023 Google LLC. All rights reserved. |
|
// |
|
// Use of this source code is governed by a BSD-style |
|
// license that can be found in the LICENSE file or at |
|
// https://developers.google.com/open-source/licenses/bsd |
|
|
|
/// Tests covering accessors for singular bool, int32, int64, and bytes fields |
|
/// on proto3. |
|
use googletest::prelude::*; |
|
use matchers::{is_set, is_unset}; |
|
use protobuf::Optional; |
|
use unittest_proto3::proto3_unittest::{TestAllTypes, TestAllTypes_}; |
|
use unittest_proto3_optional::proto2_unittest::TestProto3Optional; |
|
|
|
#[test] |
|
fn test_fixed32_accessors() { |
|
let mut msg = TestAllTypes::new(); |
|
assert_that!(msg.optional_fixed32(), eq(0)); |
|
assert_that!(msg.optional_fixed32_mut().get(), eq(0)); |
|
|
|
msg.optional_fixed32_mut().set(42); |
|
assert_that!(msg.optional_fixed32_mut().get(), eq(42)); |
|
assert_that!(msg.optional_fixed32(), eq(42)); |
|
|
|
msg.optional_fixed32_mut().clear(); |
|
assert_that!(msg.optional_fixed32(), eq(0)); |
|
assert_that!(msg.optional_fixed32_mut().get(), eq(0)); |
|
} |
|
|
|
#[test] |
|
fn test_bool_accessors() { |
|
let mut msg = TestAllTypes::new(); |
|
assert_that!(msg.optional_bool(), eq(false)); |
|
assert_that!(msg.optional_bool_mut().get(), eq(false)); |
|
|
|
msg.optional_bool_mut().set(true); |
|
assert_that!(msg.optional_bool(), eq(true)); |
|
assert_that!(msg.optional_bool_mut().get(), eq(true)); |
|
|
|
msg.optional_bool_mut().clear(); |
|
assert_that!(msg.optional_bool(), eq(false)); |
|
assert_that!(msg.optional_bool_mut().get(), eq(false)); |
|
} |
|
|
|
#[test] |
|
fn test_bytes_accessors() { |
|
let mut msg = TestAllTypes::new(); |
|
// Note: even though it's named 'optional_bytes', the field is actually not |
|
// proto3 optional, so it does not support presence. |
|
assert_that!(*msg.optional_bytes(), empty()); |
|
assert_that!(*msg.optional_bytes_mut().get(), empty()); |
|
|
|
msg.optional_bytes_mut().set(b"accessors_test"); |
|
assert_that!(msg.optional_bytes(), eq(b"accessors_test")); |
|
assert_that!(msg.optional_bytes_mut().get(), eq(b"accessors_test")); |
|
|
|
{ |
|
let s = Vec::from(&b"hello world"[..]); |
|
msg.optional_bytes_mut().set(&s[..]); |
|
} |
|
assert_that!(msg.optional_bytes(), eq(b"hello world")); |
|
assert_that!(msg.optional_bytes_mut().get(), eq(b"hello world")); |
|
|
|
msg.optional_bytes_mut().clear(); |
|
assert_that!(*msg.optional_bytes(), empty()); |
|
assert_that!(*msg.optional_bytes_mut().get(), empty()); |
|
|
|
msg.optional_bytes_mut().set(b""); |
|
assert_that!(*msg.optional_bytes(), empty()); |
|
assert_that!(*msg.optional_bytes_mut().get(), empty()); |
|
} |
|
|
|
#[test] |
|
fn test_optional_bytes_accessors() { |
|
let mut msg = TestProto3Optional::new(); |
|
assert_that!(*msg.optional_bytes(), empty()); |
|
assert_that!(msg.optional_bytes_opt(), eq(Optional::Unset(&b""[..]))); |
|
assert_that!(*msg.optional_bytes_mut().get(), empty()); |
|
assert_that!(msg.optional_bytes_mut(), is_unset()); |
|
|
|
{ |
|
let s = Vec::from(&b"hello world"[..]); |
|
msg.optional_bytes_mut().set(&s[..]); |
|
} |
|
assert_that!(msg.optional_bytes(), eq(b"hello world")); |
|
assert_that!(msg.optional_bytes_opt(), eq(Optional::Set(&b"hello world"[..]))); |
|
assert_that!(msg.optional_bytes_mut(), is_set()); |
|
assert_that!(msg.optional_bytes_mut().get(), eq(b"hello world")); |
|
|
|
msg.optional_bytes_mut().or_default().set(b"accessors_test"); |
|
assert_that!(msg.optional_bytes(), eq(b"accessors_test")); |
|
assert_that!(msg.optional_bytes_opt(), eq(Optional::Set(&b"accessors_test"[..]))); |
|
assert_that!(msg.optional_bytes_mut(), is_set()); |
|
assert_that!(msg.optional_bytes_mut().get(), eq(b"accessors_test")); |
|
assert_that!(msg.optional_bytes_mut().or_default().get(), eq(b"accessors_test")); |
|
|
|
msg.optional_bytes_mut().clear(); |
|
assert_that!(*msg.optional_bytes(), empty()); |
|
assert_that!(msg.optional_bytes_opt(), eq(Optional::Unset(&b""[..]))); |
|
assert_that!(msg.optional_bytes_mut(), is_unset()); |
|
|
|
msg.optional_bytes_mut().set(b""); |
|
assert_that!(*msg.optional_bytes(), empty()); |
|
assert_that!(msg.optional_bytes_opt(), eq(Optional::Set(&b""[..]))); |
|
|
|
msg.optional_bytes_mut().clear(); |
|
msg.optional_bytes_mut().or_default(); |
|
assert_that!(*msg.optional_bytes(), empty()); |
|
assert_that!(msg.optional_bytes_opt(), eq(Optional::Set(&b""[..]))); |
|
|
|
msg.optional_bytes_mut().or_default().set(b"\xffbinary\x85non-utf8"); |
|
assert_that!(msg.optional_bytes(), eq(b"\xffbinary\x85non-utf8")); |
|
assert_that!(msg.optional_bytes_opt(), eq(Optional::Set(&b"\xffbinary\x85non-utf8"[..]))); |
|
assert_that!(msg.optional_bytes_mut(), is_set()); |
|
assert_that!(msg.optional_bytes_mut().get(), eq(b"\xffbinary\x85non-utf8")); |
|
assert_that!(msg.optional_bytes_mut().or_default().get(), eq(b"\xffbinary\x85non-utf8")); |
|
} |
|
|
|
#[test] |
|
fn test_string_accessors() { |
|
let mut msg = TestAllTypes::new(); |
|
// Note: even though it's named 'optional_string', the field is actually not |
|
// proto3 optional, so it does not support presence. |
|
assert_eq!(msg.optional_string(), ""); |
|
assert_eq!(msg.optional_string_mut().get(), ""); |
|
|
|
msg.optional_string_mut().set("accessors_test"); |
|
assert_eq!(msg.optional_string(), "accessors_test"); |
|
assert_eq!(msg.optional_string_mut().get(), "accessors_test"); |
|
|
|
{ |
|
let s = String::from("hello world"); |
|
msg.optional_string_mut().set(&s[..]); |
|
} |
|
assert_eq!(msg.optional_string(), "hello world"); |
|
assert_eq!(msg.optional_string_mut().get(), "hello world"); |
|
|
|
msg.optional_string_mut().clear(); |
|
assert_eq!(msg.optional_string(), ""); |
|
assert_eq!(msg.optional_string_mut().get(), ""); |
|
|
|
msg.optional_string_mut().set(""); |
|
assert_eq!(msg.optional_string(), ""); |
|
assert_eq!(msg.optional_string_mut().get(), ""); |
|
} |
|
|
|
#[test] |
|
fn test_optional_string_accessors() { |
|
let mut msg = TestProto3Optional::new(); |
|
assert_eq!(msg.optional_string(), ""); |
|
assert_eq!(msg.optional_string_opt(), Optional::Unset("".into())); |
|
assert_eq!(msg.optional_string_mut().get(), ""); |
|
assert_that!(msg.optional_string_mut(), is_unset()); |
|
|
|
{ |
|
let s = String::from("hello world"); |
|
msg.optional_string_mut().set(&s[..]); |
|
} |
|
assert_eq!(msg.optional_string(), "hello world"); |
|
assert_eq!(msg.optional_string_opt(), Optional::Set("hello world".into())); |
|
assert_that!(msg.optional_string_mut(), is_set()); |
|
assert_eq!(msg.optional_string_mut().get(), "hello world"); |
|
|
|
msg.optional_string_mut().or_default().set("accessors_test"); |
|
assert_eq!(msg.optional_string(), "accessors_test"); |
|
assert_eq!(msg.optional_string_opt(), Optional::Set("accessors_test".into())); |
|
assert_that!(msg.optional_string_mut(), is_set()); |
|
assert_eq!(msg.optional_string_mut().get(), "accessors_test"); |
|
assert_eq!(msg.optional_string_mut().or_default().get(), "accessors_test"); |
|
|
|
msg.optional_string_mut().clear(); |
|
assert_eq!(msg.optional_string(), ""); |
|
assert_eq!(msg.optional_string_opt(), Optional::Unset("".into())); |
|
assert_that!(msg.optional_string_mut(), is_unset()); |
|
|
|
msg.optional_string_mut().set(""); |
|
assert_eq!(msg.optional_string(), ""); |
|
assert_eq!(msg.optional_string_opt(), Optional::Set("".into())); |
|
|
|
msg.optional_string_mut().clear(); |
|
msg.optional_string_mut().or_default(); |
|
assert_eq!(msg.optional_string(), ""); |
|
assert_eq!(msg.optional_string_opt(), Optional::Set("".into())); |
|
} |
|
|
|
#[test] |
|
fn test_oneof_accessors() { |
|
use TestAllTypes_::OneofField::*; |
|
|
|
let mut msg = TestAllTypes::new(); |
|
assert_that!(msg.oneof_field(), matches_pattern!(not_set(_))); |
|
|
|
msg.oneof_uint32_set(Some(7)); |
|
assert_that!(msg.oneof_uint32_opt(), eq(Optional::Set(7))); |
|
assert_that!(msg.oneof_field(), matches_pattern!(OneofUint32(eq(7)))); |
|
|
|
msg.oneof_uint32_set(None); |
|
assert_that!(msg.oneof_uint32_opt(), eq(Optional::Unset(0))); |
|
assert_that!(msg.oneof_field(), matches_pattern!(not_set(_))); |
|
|
|
msg.oneof_uint32_set(Some(7)); |
|
msg.oneof_bytes_mut().set(b"123"); |
|
assert_that!(msg.oneof_uint32_opt(), eq(Optional::Unset(0))); |
|
|
|
assert_that!(msg.oneof_field(), matches_pattern!(OneofBytes(eq(b"123")))); |
|
}
|
|
|