OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 new cricket::VideoContentDescription()); | 66 new cricket::VideoContentDescription()); |
67 | 67 |
68 audio->AddCodec(cricket::AudioCodec(103, "ISAC", 16000, 0, 0, 0)); | 68 audio->AddCodec(cricket::AudioCodec(103, "ISAC", 16000, 0, 0, 0)); |
69 desc->AddContent(cricket::CN_AUDIO, cricket::NS_JINGLE_RTP, | 69 desc->AddContent(cricket::CN_AUDIO, cricket::NS_JINGLE_RTP, |
70 audio.release()); | 70 audio.release()); |
71 | 71 |
72 video->AddCodec(cricket::VideoCodec(120, "VP8", 640, 480, 30, 0)); | 72 video->AddCodec(cricket::VideoCodec(120, "VP8", 640, 480, 30, 0)); |
73 desc->AddContent(cricket::CN_VIDEO, cricket::NS_JINGLE_RTP, | 73 desc->AddContent(cricket::CN_VIDEO, cricket::NS_JINGLE_RTP, |
74 video.release()); | 74 video.release()); |
75 | 75 |
76 EXPECT_TRUE(desc->AddTransportInfo( | 76 EXPECT_TRUE(desc->AddTransportInfo(cricket::TransportInfo( |
77 cricket::TransportInfo( | 77 cricket::CN_AUDIO, |
78 cricket::CN_AUDIO, | 78 cricket::TransportDescription( |
79 cricket::TransportDescription( | 79 std::vector<std::string>(), kCandidateUfragVoice, kCandidatePwdVoice, |
80 std::vector<std::string>(), | 80 cricket::ICEMODE_FULL, cricket::CONNECTIONROLE_NONE, NULL)))); |
81 kCandidateUfragVoice, kCandidatePwdVoice, | 81 EXPECT_TRUE(desc->AddTransportInfo(cricket::TransportInfo( |
82 cricket::ICEMODE_FULL, | 82 cricket::CN_VIDEO, |
83 cricket::CONNECTIONROLE_NONE, | 83 cricket::TransportDescription( |
84 NULL, cricket::Candidates())))); | 84 std::vector<std::string>(), kCandidateUfragVideo, kCandidatePwdVideo, |
85 EXPECT_TRUE(desc->AddTransportInfo( | 85 cricket::ICEMODE_FULL, cricket::CONNECTIONROLE_NONE, NULL)))); |
86 cricket::TransportInfo(cricket::CN_VIDEO, | |
87 cricket::TransportDescription( | |
88 std::vector<std::string>(), | |
89 kCandidateUfragVideo, kCandidatePwdVideo, | |
90 cricket::ICEMODE_FULL, | |
91 cricket::CONNECTIONROLE_NONE, | |
92 NULL, cricket::Candidates())))); | |
93 return desc; | 86 return desc; |
94 } | 87 } |
95 | 88 |
96 class JsepSessionDescriptionTest : public testing::Test { | 89 class JsepSessionDescriptionTest : public testing::Test { |
97 protected: | 90 protected: |
98 virtual void SetUp() { | 91 virtual void SetUp() { |
99 int port = 1234; | 92 int port = 1234; |
100 rtc::SocketAddress address("127.0.0.1", port++); | 93 rtc::SocketAddress address("127.0.0.1", port++); |
101 cricket::Candidate candidate(cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp", | 94 cricket::Candidate candidate(cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp", |
102 address, 1, "", "", "local", 0, "1"); | 95 address, 1, "", "", "local", 0, "1"); |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate)); | 229 EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate)); |
237 std::string sdp_with_candidate = Serialize(jsep_desc_.get()); | 230 std::string sdp_with_candidate = Serialize(jsep_desc_.get()); |
238 EXPECT_NE(sdp, sdp_with_candidate); | 231 EXPECT_NE(sdp, sdp_with_candidate); |
239 | 232 |
240 scoped_ptr<SessionDescriptionInterface> parsed_jsep_desc( | 233 scoped_ptr<SessionDescriptionInterface> parsed_jsep_desc( |
241 DeSerialize(sdp_with_candidate)); | 234 DeSerialize(sdp_with_candidate)); |
242 std::string parsed_sdp_with_candidate = Serialize(parsed_jsep_desc.get()); | 235 std::string parsed_sdp_with_candidate = Serialize(parsed_jsep_desc.get()); |
243 | 236 |
244 EXPECT_EQ(sdp_with_candidate, parsed_sdp_with_candidate); | 237 EXPECT_EQ(sdp_with_candidate, parsed_sdp_with_candidate); |
245 } | 238 } |
OLD | NEW |