| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/native_messaging/native_messaging_writer.h" | 5 #include "remoting/host/native_messaging/native_messaging_writer.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/json/json_reader.h" | 8 #include "base/json/json_reader.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
| 11 #include "base/values.h" | 11 #include "base/values.h" |
| 12 #include "remoting/host/setup/test_util.h" | 12 #include "remoting/host/setup/test_util.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 14 |
| 15 namespace remoting { | 15 namespace remoting { |
| 16 | 16 |
| 17 class NativeMessagingWriterTest : public testing::Test { | 17 class NativeMessagingWriterTest : public testing::Test { |
| 18 public: | 18 public: |
| 19 NativeMessagingWriterTest(); | 19 NativeMessagingWriterTest(); |
| 20 virtual ~NativeMessagingWriterTest(); | 20 ~NativeMessagingWriterTest() override; |
| 21 | 21 |
| 22 virtual void SetUp() override; | 22 void SetUp() override; |
| 23 | 23 |
| 24 protected: | 24 protected: |
| 25 scoped_ptr<NativeMessagingWriter> writer_; | 25 scoped_ptr<NativeMessagingWriter> writer_; |
| 26 base::File read_file_; | 26 base::File read_file_; |
| 27 base::File write_file_; | 27 base::File write_file_; |
| 28 }; | 28 }; |
| 29 | 29 |
| 30 NativeMessagingWriterTest::NativeMessagingWriterTest() {} | 30 NativeMessagingWriterTest::NativeMessagingWriterTest() {} |
| 31 | 31 |
| 32 NativeMessagingWriterTest::~NativeMessagingWriterTest() {} | 32 NativeMessagingWriterTest::~NativeMessagingWriterTest() {} |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 88 |
| 89 TEST_F(NativeMessagingWriterTest, FailedWrite) { | 89 TEST_F(NativeMessagingWriterTest, FailedWrite) { |
| 90 // Close the read end so that writing fails immediately. | 90 // Close the read end so that writing fails immediately. |
| 91 read_file_.Close(); | 91 read_file_.Close(); |
| 92 | 92 |
| 93 base::DictionaryValue message; | 93 base::DictionaryValue message; |
| 94 EXPECT_FALSE(writer_->WriteMessage(message)); | 94 EXPECT_FALSE(writer_->WriteMessage(message)); |
| 95 } | 95 } |
| 96 | 96 |
| 97 } // namespace remoting | 97 } // namespace remoting |
| OLD | NEW |