Jon Hjelle | 29d5e57 | 2016-01-06 11:49:11 -0800 | [diff] [blame] | 1 | /* |
Henrik Kjellander | 15583c1 | 2016-02-10 10:53:12 +0100 | [diff] [blame^] | 2 | * libjingle |
| 3 | * Copyright 2015 Google Inc. |
Jon Hjelle | 29d5e57 | 2016-01-06 11:49:11 -0800 | [diff] [blame] | 4 | * |
Henrik Kjellander | 15583c1 | 2016-02-10 10:53:12 +0100 | [diff] [blame^] | 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions are met: |
| 7 | * |
| 8 | * 1. Redistributions of source code must retain the above copyright notice, |
| 9 | * this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * 3. The name of the author may not be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 17 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 18 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| 19 | * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 21 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 22 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 24 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Jon Hjelle | 29d5e57 | 2016-01-06 11:49:11 -0800 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | #import <Foundation/Foundation.h> |
| 29 | |
| 30 | #include "webrtc/base/gunit.h" |
| 31 | |
| 32 | #import "webrtc/api/objc/RTCIceCandidate.h" |
| 33 | #import "webrtc/api/objc/RTCIceCandidate+Private.h" |
| 34 | #import "webrtc/base/objc/NSString+StdString.h" |
| 35 | |
| 36 | @interface RTCIceCandidateTest : NSObject |
| 37 | - (void)testCandidate; |
| 38 | - (void)testInitFromNativeCandidate; |
| 39 | @end |
| 40 | |
| 41 | @implementation RTCIceCandidateTest |
| 42 | |
| 43 | - (void)testCandidate { |
| 44 | NSString *sdp = @"candidate:4025901590 1 udp 2122265343 " |
| 45 | "fdff:2642:12a6:fe38:c001:beda:fcf9:51aa " |
| 46 | "59052 typ host generation 0"; |
| 47 | |
| 48 | RTCIceCandidate *candidate = [[RTCIceCandidate alloc] initWithSdp:sdp |
| 49 | sdpMLineIndex:0 |
| 50 | sdpMid:@"audio"]; |
| 51 | |
| 52 | rtc::scoped_ptr<webrtc::IceCandidateInterface> nativeCandidate = |
| 53 | candidate.nativeCandidate; |
| 54 | EXPECT_EQ("audio", nativeCandidate->sdp_mid()); |
| 55 | EXPECT_EQ(0, nativeCandidate->sdp_mline_index()); |
| 56 | |
| 57 | std::string sdpString; |
| 58 | nativeCandidate->ToString(&sdpString); |
| 59 | EXPECT_EQ(sdp.stdString, sdpString); |
| 60 | } |
| 61 | |
| 62 | - (void)testInitFromNativeCandidate { |
| 63 | std::string sdp("candidate:4025901590 1 udp 2122265343 " |
| 64 | "fdff:2642:12a6:fe38:c001:beda:fcf9:51aa " |
| 65 | "59052 typ host generation 0"); |
| 66 | webrtc::IceCandidateInterface *nativeCandidate = |
| 67 | webrtc::CreateIceCandidate("audio", 0, sdp, nullptr); |
| 68 | |
| 69 | RTCIceCandidate *iceCandidate = |
| 70 | [[RTCIceCandidate alloc] initWithNativeCandidate:nativeCandidate]; |
| 71 | EXPECT_TRUE([@"audio" isEqualToString:iceCandidate.sdpMid]); |
| 72 | EXPECT_EQ(0, iceCandidate.sdpMLineIndex); |
| 73 | |
| 74 | EXPECT_EQ(sdp, iceCandidate.sdp.stdString); |
| 75 | } |
| 76 | |
| 77 | @end |
| 78 | |
| 79 | TEST(RTCIceCandidateTest, CandidateTest) { |
| 80 | @autoreleasepool { |
| 81 | RTCIceCandidateTest *test = [[RTCIceCandidateTest alloc] init]; |
| 82 | [test testCandidate]; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | TEST(RTCIceCandidateTest, InitFromCandidateTest) { |
| 87 | @autoreleasepool { |
| 88 | RTCIceCandidateTest *test = [[RTCIceCandidateTest alloc] init]; |
| 89 | [test testInitFromNativeCandidate]; |
| 90 | } |
| 91 | } |