blob: ccebd74198f4cba4d1380c90b535c56df84dbcbc [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>
Byoungchan Leec8a6fb22022-05-13 19:59:49 +090012#import <XCTest/XCTest.h>
hjonda2183c2016-01-27 13:42:28 -080013
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020014#include "rtc_base/gunit.h"
hjonda2183c2016-01-27 13:42:28 -080015
Anders Carlsson7bca8ca2018-08-30 09:30:29 +020016#import "api/peerconnection/RTCDataChannelConfiguration+Private.h"
17#import "api/peerconnection/RTCDataChannelConfiguration.h"
Artem Titov63ee39d2022-05-13 14:46:42 +000018#import "helpers/NSString+StdString.h"
hjonda2183c2016-01-27 13:42:28 -080019
Byoungchan Leec8a6fb22022-05-13 19:59:49 +090020@interface RTCDataChannelConfigurationTest : XCTestCase
hjonda2183c2016-01-27 13:42:28 -080021@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
Mirko Bonadeia81e9c82020-05-04 16:14:32 +020033 RTC_OBJC_TYPE(RTCDataChannelConfiguration) *dataChannelConfig =
34 [[RTC_OBJC_TYPE(RTCDataChannelConfiguration) alloc] init];
hjonda2183c2016-01-27 13:42:28 -080035 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