Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(638)

Side by Side Diff: remoting/host/heartbeat_sender_unittest.cc

Issue 2443903004: Add xmllite and xmpp sources to third_party/ (Closed)
Patch Set: Explicitly use webrtc_overrides/webrtc/base/logging.h Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/host/heartbeat_sender.cc ('k') | remoting/host/host_change_notification_listener.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/host/heartbeat_sender.h" 5 #include "remoting/host/heartbeat_sender.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/run_loop.h" 11 #include "base/run_loop.h"
12 #include "base/strings/string_number_conversions.h" 12 #include "base/strings/string_number_conversions.h"
13 #include "remoting/base/constants.h" 13 #include "remoting/base/constants.h"
14 #include "remoting/base/rsa_key_pair.h" 14 #include "remoting/base/rsa_key_pair.h"
15 #include "remoting/base/test_rsa_key_pair.h" 15 #include "remoting/base/test_rsa_key_pair.h"
16 #include "remoting/signaling/iq_sender.h" 16 #include "remoting/signaling/iq_sender.h"
17 #include "remoting/signaling/mock_signal_strategy.h" 17 #include "remoting/signaling/mock_signal_strategy.h"
18 #include "testing/gmock/include/gmock/gmock.h" 18 #include "testing/gmock/include/gmock/gmock.h"
19 #include "testing/gtest/include/gtest/gtest.h" 19 #include "testing/gtest/include/gtest/gtest.h"
20 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" 20 #include "third_party/libjingle_xmpp/xmllite/xmlelement.h"
21 #include "third_party/webrtc/libjingle/xmpp/constants.h" 21 #include "third_party/libjingle_xmpp/xmpp/constants.h"
22 22
23 using buzz::QName; 23 using buzz::QName;
24 using buzz::XmlElement; 24 using buzz::XmlElement;
25 25
26 using testing::_; 26 using testing::_;
27 using testing::DeleteArg; 27 using testing::DeleteArg;
28 using testing::DoAll; 28 using testing::DoAll;
29 using testing::Invoke; 29 using testing::Invoke;
30 using testing::NotNull; 30 using testing::NotNull;
31 using testing::Return; 31 using testing::Return;
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 EXPECT_TRUE(heartbeat_stanza->NextNamed(signature_tag) == nullptr); 395 EXPECT_TRUE(heartbeat_stanza->NextNamed(signature_tag) == nullptr);
396 396
397 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair); 397 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair);
398 ASSERT_TRUE(key_pair.get()); 398 ASSERT_TRUE(key_pair.get());
399 std::string expected_signature = key_pair->SignMessage( 399 std::string expected_signature = key_pair->SignMessage(
400 std::string(kTestJidNormalized) + ' ' + expected_sequence_id); 400 std::string(kTestJidNormalized) + ' ' + expected_sequence_id);
401 EXPECT_EQ(expected_signature, signature->BodyText()); 401 EXPECT_EQ(expected_signature, signature->BodyText());
402 } 402 }
403 403
404 } // namespace remoting 404 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/heartbeat_sender.cc ('k') | remoting/host/host_change_notification_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698