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

Unified Diff: remoting/jingle_glue/log_to_server_unittest.cc

Issue 390983003: Remove remoting/jingle_glue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/jingle_glue/log_to_server.cc ('k') | remoting/jingle_glue/mock_objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/jingle_glue/log_to_server_unittest.cc
diff --git a/remoting/jingle_glue/log_to_server_unittest.cc b/remoting/jingle_glue/log_to_server_unittest.cc
deleted file mode 100644
index aaab144491265ed2c8d1e196c00aab65bb69f4c0..0000000000000000000000000000000000000000
--- a/remoting/jingle_glue/log_to_server_unittest.cc
+++ /dev/null
@@ -1,93 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "remoting/jingle_glue/log_to_server.h"
-
-#include "base/message_loop/message_loop.h"
-#include "base/run_loop.h"
-#include "remoting/jingle_glue/mock_objects.h"
-#include "remoting/jingle_glue/server_log_entry_unittest.h"
-#include "testing/gmock/include/gmock/gmock.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-using buzz::XmlElement;
-using buzz::QName;
-using testing::_;
-using testing::DeleteArg;
-using testing::InSequence;
-using testing::Return;
-
-namespace remoting {
-
-namespace {
-
-const char kTestBotJid[] = "remotingunittest@bot.talk.google.com";
-const char kClientJid[] = "host@domain.com/1234";
-
-MATCHER_P2(IsLogEntry, key, value, "") {
- XmlElement* entry = GetSingleLogEntryFromStanza(arg);
- if (!entry) {
- return false;
- }
-
- return entry->Attr(QName(std::string(), key)) == value;
-}
-
-} // namespace
-
-class LogToServerTest : public testing::Test {
- public:
- LogToServerTest() {}
- virtual void SetUp() OVERRIDE {
- EXPECT_CALL(signal_strategy_, AddListener(_));
- EXPECT_CALL(signal_strategy_, RemoveListener(_));
- log_to_server_.reset(
- new LogToServer(ServerLogEntry::ME2ME, &signal_strategy_, kTestBotJid));
- }
-
- protected:
- base::MessageLoop message_loop_;
- base::RunLoop run_loop_;
- MockSignalStrategy signal_strategy_;
- scoped_ptr<LogToServer> log_to_server_;
-};
-
-TEST_F(LogToServerTest, LogWhenConnected) {
- {
- InSequence s;
- EXPECT_CALL(signal_strategy_, GetLocalJid())
- .WillRepeatedly(Return(kClientJid));
- EXPECT_CALL(signal_strategy_, AddListener(_));
- EXPECT_CALL(signal_strategy_, GetNextId());
- EXPECT_CALL(signal_strategy_, SendStanzaPtr(IsLogEntry("a", "1")))
- .WillOnce(DoAll(DeleteArg<0>(), Return(true)));
- EXPECT_CALL(signal_strategy_, GetNextId());
- EXPECT_CALL(signal_strategy_, SendStanzaPtr(IsLogEntry("b", "2")))
- .WillOnce(DoAll(DeleteArg<0>(), Return(true)));
- EXPECT_CALL(signal_strategy_, RemoveListener(_))
- .RetiresOnSaturation();
- }
-
- ServerLogEntry entry1;
- ServerLogEntry entry2;
- entry1.Set("a", "1");
- entry2.Set("b", "2");
- log_to_server_->Log(entry1);
- log_to_server_->OnSignalStrategyStateChange(SignalStrategy::CONNECTED);
- log_to_server_->Log(entry2);
- run_loop_.RunUntilIdle();
-}
-
-TEST_F(LogToServerTest, DontLogWhenDisconnected) {
- EXPECT_CALL(signal_strategy_, GetLocalJid())
- .WillRepeatedly(Return(kClientJid));
- EXPECT_CALL(signal_strategy_, SendStanzaPtr(_)).Times(0);
-
- ServerLogEntry entry;
- entry.Set("foo", "bar");
- log_to_server_->Log(entry);
- run_loop_.RunUntilIdle();
-}
-
-} // namespace remoting
« no previous file with comments | « remoting/jingle_glue/log_to_server.cc ('k') | remoting/jingle_glue/mock_objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698