1 /* 2 * Copyright (c) 2021 The WebRTC project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 #include "net/dcsctp/packet/error_cause/no_user_data_cause.h" 11 12 #include <stdint.h> 13 14 #include <type_traits> 15 #include <vector> 16 17 #include "net/dcsctp/testing/testing_macros.h" 18 #include "rtc_base/gunit.h" 19 20 namespace dcsctp { 21 namespace { 22 TEST(NoUserDataCauseTest,SerializeAndDeserialize)23TEST(NoUserDataCauseTest, SerializeAndDeserialize) { 24 NoUserDataCause parameter(TSN(123)); 25 26 std::vector<uint8_t> serialized; 27 parameter.SerializeTo(serialized); 28 29 ASSERT_HAS_VALUE_AND_ASSIGN(NoUserDataCause deserialized, 30 NoUserDataCause::Parse(serialized)); 31 32 EXPECT_EQ(*deserialized.tsn(), 123u); 33 } 34 35 } // namespace 36 } // namespace dcsctp 37