blob: a96ae51707b496ec60db54d84645c18d9d57f03a [file] [log] [blame]
hjonda2183c2016-01-27 13:42:28 -08001/*
2 * Copyright 2015 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
11#import <Foundation/Foundation.h>
12
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "rtc_base/gunit.h"
hjonda2183c2016-01-27 13:42:28 -080014
Anders Carlsson7bca8ca2018-08-30 09:30:29 +020015#import "api/peerconnection/RTCDataChannelConfiguration+Private.h"
16#import "api/peerconnection/RTCDataChannelConfiguration.h"
17#import "helpers/NSString+StdString.h"
hjonda2183c2016-01-27 13:42:28 -080018
19@interface RTCDataChannelConfigurationTest : NSObject
20- (void)testConversionToNativeDataChannelInit;
21@end
22
23@implementation RTCDataChannelConfigurationTest
24
25- (void)testConversionToNativeDataChannelInit {
26 BOOL isOrdered = NO;
27 int maxPacketLifeTime = 5;
28 int maxRetransmits = 4;
29 BOOL isNegotiated = YES;
tkchin8b9ca952016-03-31 12:08:03 -070030 int channelId = 4;
hjonda2183c2016-01-27 13:42:28 -080031 NSString *protocol = @"protocol";
32
33 RTCDataChannelConfiguration *dataChannelConfig =
34 [[RTCDataChannelConfiguration alloc] init];
35 dataChannelConfig.isOrdered = isOrdered;
36 dataChannelConfig.maxPacketLifeTime = maxPacketLifeTime;
37 dataChannelConfig.maxRetransmits = maxRetransmits;
38 dataChannelConfig.isNegotiated = isNegotiated;
tkchin8b9ca952016-03-31 12:08:03 -070039 dataChannelConfig.channelId = channelId;
hjonda2183c2016-01-27 13:42:28 -080040 dataChannelConfig.protocol = protocol;
41
42 webrtc::DataChannelInit nativeInit = dataChannelConfig.nativeDataChannelInit;
43 EXPECT_EQ(isOrdered, nativeInit.ordered);
44 EXPECT_EQ(maxPacketLifeTime, nativeInit.maxRetransmitTime);
45 EXPECT_EQ(maxRetransmits, nativeInit.maxRetransmits);
46 EXPECT_EQ(isNegotiated, nativeInit.negotiated);
tkchin8b9ca952016-03-31 12:08:03 -070047 EXPECT_EQ(channelId, nativeInit.id);
hjonda2183c2016-01-27 13:42:28 -080048 EXPECT_EQ(protocol.stdString, nativeInit.protocol);
49}
50
51@end
52
53TEST(RTCDataChannelConfiguration, NativeDataChannelInitConversionTest) {
54 @autoreleasepool {
55 RTCDataChannelConfigurationTest *test =
56 [[RTCDataChannelConfigurationTest alloc] init];
57 [test testConversionToNativeDataChannelInit];
58 }
59}