| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/protocol/spake2_authenticator.h" | 5 #include "remoting/protocol/spake2_authenticator.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "remoting/base/rsa_key_pair.h" | 9 #include "remoting/base/rsa_key_pair.h" |
| 10 #include "remoting/protocol/authenticator_test_base.h" | 10 #include "remoting/protocol/authenticator_test_base.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 InitAuthenticators(kTestSharedSecretBad, kTestSharedSecret)); | 78 InitAuthenticators(kTestSharedSecretBad, kTestSharedSecret)); |
| 79 ASSERT_NO_FATAL_FAILURE(RunAuthExchange()); | 79 ASSERT_NO_FATAL_FAILURE(RunAuthExchange()); |
| 80 | 80 |
| 81 ASSERT_EQ(Authenticator::REJECTED, client_->state()); | 81 ASSERT_EQ(Authenticator::REJECTED, client_->state()); |
| 82 ASSERT_EQ(Authenticator::INVALID_CREDENTIALS, client_->rejection_reason()); | 82 ASSERT_EQ(Authenticator::INVALID_CREDENTIALS, client_->rejection_reason()); |
| 83 | 83 |
| 84 // Change |client_| so that we can get the last message. | 84 // Change |client_| so that we can get the last message. |
| 85 reinterpret_cast<Spake2Authenticator*>(client_.get())->state_ = | 85 reinterpret_cast<Spake2Authenticator*>(client_.get())->state_ = |
| 86 Authenticator::MESSAGE_READY; | 86 Authenticator::MESSAGE_READY; |
| 87 | 87 |
| 88 scoped_ptr<buzz::XmlElement> message(client_->GetNextMessage()); | 88 std::unique_ptr<buzz::XmlElement> message(client_->GetNextMessage()); |
| 89 ASSERT_TRUE(message.get()); | 89 ASSERT_TRUE(message.get()); |
| 90 | 90 |
| 91 ASSERT_EQ(Authenticator::WAITING_MESSAGE, client_->state()); | 91 ASSERT_EQ(Authenticator::WAITING_MESSAGE, client_->state()); |
| 92 host_->ProcessMessage(message.get(), base::Bind(&base::DoNothing)); | 92 host_->ProcessMessage(message.get(), base::Bind(&base::DoNothing)); |
| 93 // This assumes that Spake2Authenticator::ProcessMessage runs synchronously. | 93 // This assumes that Spake2Authenticator::ProcessMessage runs synchronously. |
| 94 ASSERT_EQ(Authenticator::REJECTED, host_->state()); | 94 ASSERT_EQ(Authenticator::REJECTED, host_->state()); |
| 95 } | 95 } |
| 96 | 96 |
| 97 } // namespace protocol | 97 } // namespace protocol |
| 98 } // namespace remoting | 98 } // namespace remoting |
| OLD | NEW |