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

Unified Diff: remoting/test/app_remoting_test_driver_environment.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/app_remoting_test_driver.cc ('k') | remoting/test/app_remoting_test_driver_environment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/app_remoting_test_driver_environment.h
diff --git a/remoting/test/app_remoting_test_driver_environment.h b/remoting/test/app_remoting_test_driver_environment.h
new file mode 100644
index 0000000000000000000000000000000000000000..579e209d028eedd40f9318c9a86d68cd2abfc183
--- /dev/null
+++ b/remoting/test/app_remoting_test_driver_environment.h
@@ -0,0 +1,85 @@
+// 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_APP_REMOTING_TEST_DRIVER_ENVIRONMENT_H_
+#define REMOTING_TEST_APP_REMOTING_TEST_DRIVER_ENVIRONMENT_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "remoting/test/access_token_fetcher.h"
+#include "remoting/test/refresh_token_store.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace remoting {
+namespace test {
+
+// Globally accessible to all test fixtures and cases and has its
+// lifetime managed by the GTest framework. It is responsible for managing
+// access tokens and caching remote host connection information.
+// TODO(joedow) Add remote host connection functionality.
+class AppRemotingTestDriverEnvironment : public testing::Environment {
+ public:
+ AppRemotingTestDriverEnvironment(
+ const std::string& user_name,
+ const std::string& service_environment);
+ ~AppRemotingTestDriverEnvironment() override;
+
+ // Returns false if a valid access token cannot be retrieved.
+ bool Initialize(const std::string& auth_code);
+
+ // Synchronously request a new access token using |refresh_token_|.
+ // Returns true if a valid access token has been retrieved.
+ bool RefreshAccessToken();
+
+ // Used to set fake/mock objects for AppRemotingTestDriverEnvironment tests.
+ void SetAccessTokenFetcherForTest(AccessTokenFetcher* access_token_fetcher);
+ void SetRefreshTokenStoreForTest(RefreshTokenStore* refresh_token_store);
+
+ // Accessors for fields used by tests.
+ const std::string& access_token() const { return access_token_; }
+ const std::string& user_name() const { return user_name_; }
+
+ private:
+ // Used to retrieve an access token. If |auth_code| is empty, then the stored
+ // refresh_token will be used instead of |auth_code|.
+ // Returns true if a new, valid access token has been retrieved.
+ bool RetrieveAccessToken(const std::string& auth_code);
+
+ // Called after the access token fetcher completes.
+ // The tokens will be empty on failure.
+ void OnAccessTokenRetrieved(
+ base::Closure done_closure,
+ const std::string& access_token,
+ const std::string& refresh_token);
+
+ // Used for authenticating with the app remoting service API.
+ std::string access_token_;
+
+ // Used to retrieve an access token.
+ std::string refresh_token_;
+
+ // Used for authentication.
+ std::string user_name_;
+
+ // Service API to target when retrieving remote host connection information.
+ // TODO(joedow): Turn this into an enum when remote_host code is added.
+ std::string service_environment_;
+
+ // Access token fetcher used by TestDriverEnvironment tests.
+ remoting::test::AccessTokenFetcher* test_access_token_fetcher_;
+
+ // RefreshTokenStore used by TestDriverEnvironment tests.
+ remoting::test::RefreshTokenStore* test_refresh_token_store_;
+
+ DISALLOW_COPY_AND_ASSIGN(AppRemotingTestDriverEnvironment);
+};
+
+// Unfortunately a global var is how the GTEST framework handles sharing data
+// between tests and keeping long-lived objects around. Used to share auth
+// tokens and remote host connection information across tests.
+extern AppRemotingTestDriverEnvironment* AppRemotingSharedData;
+
+} // namespace test
+} // namespace remoting
+
+#endif // REMOTING_TEST_APP_REMOTING_TEST_DRIVER_ENVIRONMENT_H_
« no previous file with comments | « remoting/test/app_remoting_test_driver.cc ('k') | remoting/test/app_remoting_test_driver_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698