| OLD | NEW |
| 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/message_loop/message_loop_proxy.h" | |
| 12 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
| 13 #include "base/strings/string_number_conversions.h" | 12 #include "base/strings/string_number_conversions.h" |
| 14 #include "remoting/base/constants.h" | 13 #include "remoting/base/constants.h" |
| 15 #include "remoting/base/rsa_key_pair.h" | 14 #include "remoting/base/rsa_key_pair.h" |
| 16 #include "remoting/base/test_rsa_key_pair.h" | 15 #include "remoting/base/test_rsa_key_pair.h" |
| 17 #include "remoting/signaling/iq_sender.h" | 16 #include "remoting/signaling/iq_sender.h" |
| 18 #include "remoting/signaling/mock_signal_strategy.h" | 17 #include "remoting/signaling/mock_signal_strategy.h" |
| 19 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
| 20 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
| 21 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" | 20 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 EXPECT_TRUE(heartbeat_stanza->NextNamed(signature_tag) == nullptr); | 361 EXPECT_TRUE(heartbeat_stanza->NextNamed(signature_tag) == nullptr); |
| 363 | 362 |
| 364 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair); | 363 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair); |
| 365 ASSERT_TRUE(key_pair.get()); | 364 ASSERT_TRUE(key_pair.get()); |
| 366 std::string expected_signature = key_pair->SignMessage( | 365 std::string expected_signature = key_pair->SignMessage( |
| 367 std::string(kTestJidNormalized) + ' ' + expected_sequence_id); | 366 std::string(kTestJidNormalized) + ' ' + expected_sequence_id); |
| 368 EXPECT_EQ(expected_signature, signature->BodyText()); | 367 EXPECT_EQ(expected_signature, signature->BodyText()); |
| 369 } | 368 } |
| 370 | 369 |
| 371 } // namespace remoting | 370 } // namespace remoting |
| OLD | NEW |