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

Unified Diff: remoting/test/mock_access_token_fetcher.h

Issue 880273006: Adding the AccessTokenFetcher and Environment class to the app remoting test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing one last windows compile issue Created 5 years, 10 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/test/fake_access_token_fetcher.cc ('k') | remoting/test/mock_access_token_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/mock_access_token_fetcher.h
diff --git a/remoting/test/mock_access_token_fetcher.h b/remoting/test/mock_access_token_fetcher.h
new file mode 100644
index 0000000000000000000000000000000000000000..61b6f2067ad501f2d4aefbc3b5e4a12f4f311d31
--- /dev/null
+++ b/remoting/test/mock_access_token_fetcher.h
@@ -0,0 +1,46 @@
+// Copyright 2015 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.
+
+#ifndef REMOTING_TEST_MOCK_ACCESS_TOKEN_FETCHER_H_
+#define REMOTING_TEST_MOCK_ACCESS_TOKEN_FETCHER_H_
+
+#include "remoting/test/access_token_fetcher.h"
+
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace remoting {
+namespace test {
+
+// Used for testing classes which rely on the AccessTokenFetcher and want to
+// simulate success and failure scenarios without using the actual class and
+// network connection.
+class MockAccessTokenFetcher : public AccessTokenFetcher {
+ public:
+ MockAccessTokenFetcher();
+ ~MockAccessTokenFetcher() override;
+
+ MOCK_METHOD2(GetAccessTokenFromAuthCode,
+ void(const std::string& auth_code,
+ const AccessTokenCallback& callback));
+
+ MOCK_METHOD2(GetAccessTokenFromRefreshToken,
+ void(const std::string& refresh_token,
+ const AccessTokenCallback& callback));
+
+ // Stores an access token fetcher object and wires up the mock methods to call
+ // through to the appropriate method on it. This method is typically used to
+ // pass a FakeAccessTokenFetcher.
+ void SetAccessTokenFetcher(scoped_ptr<AccessTokenFetcher> fetcher);
+
+ private:
+ scoped_ptr<AccessTokenFetcher> internal_access_token_fetcher_;
+
+ DISALLOW_COPY_AND_ASSIGN(MockAccessTokenFetcher);
+};
+
+} // namespace test
+} // namespace remoting
+
+#endif // REMOTING_TEST_MOCK_ACCESS_TOKEN_FETCHER_H_
« no previous file with comments | « remoting/test/fake_access_token_fetcher.cc ('k') | remoting/test/mock_access_token_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698