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

Unified Diff: trunk/src/chrome/browser/chromeos/policy/device_local_account_browsertest.cc

Issue 343103005: Revert 278518 "Wire up component cloud policy to device local ac..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 6 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
Index: trunk/src/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
===================================================================
--- trunk/src/chrome/browser/chromeos/policy/device_local_account_browsertest.cc (revision 278641)
+++ trunk/src/chrome/browser/chromeos/policy/device_local_account_browsertest.cc (working copy)
@@ -17,6 +17,7 @@
#include "base/command_line.h"
#include "base/file_util.h"
#include "base/files/file_path.h"
+#include "base/files/scoped_temp_dir.h"
#include "base/json/json_reader.h"
#include "base/json/json_writer.h"
#include "base/location.h"
@@ -32,6 +33,7 @@
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
+#include "base/test/scoped_path_override.h"
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_notification_types.h"
@@ -309,6 +311,15 @@
PolicyBuilder::kFakeDeviceId);
ASSERT_TRUE(test_server_.Start());
+ ASSERT_TRUE(extension_cache_root_dir_.CreateUniqueTempDir());
+ extension_cache_root_dir_override_.reset(new base::ScopedPathOverride(
+ chromeos::DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS,
+ extension_cache_root_dir_.path()));
+ ASSERT_TRUE(external_data_cache_dir_.CreateUniqueTempDir());
+ external_data_cache_dir_override_.reset(new base::ScopedPathOverride(
+ chromeos::DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA,
+ external_data_cache_dir_.path()));
+
BrowserList::AddObserver(this);
DevicePolicyCrosBrowserTest::SetUp();
@@ -422,11 +433,8 @@
}
base::FilePath GetCacheDirectoryForAccountID(const std::string& account_id) {
- base::FilePath extension_cache_root_dir;
- PathService::Get(chromeos::DIR_DEVICE_LOCAL_ACCOUNT_EXTENSIONS,
- &extension_cache_root_dir);
- return extension_cache_root_dir.Append(
- base::HexEncode(account_id.c_str(), account_id.size()));
+ return extension_cache_root_dir_.path()
+ .Append(base::HexEncode(account_id.c_str(), account_id.size()));
}
base::FilePath GetCacheCRXFile(const std::string& account_id,
@@ -451,6 +459,11 @@
LocalPolicyTestServer test_server_;
private:
+ base::ScopedTempDir extension_cache_root_dir_;
+ base::ScopedTempDir external_data_cache_dir_;
+ scoped_ptr<base::ScopedPathOverride> extension_cache_root_dir_override_;
+ scoped_ptr<base::ScopedPathOverride> external_data_cache_dir_override_;
+
DISALLOW_COPY_AND_ASSIGN(DeviceLocalAccountTest);
};

Powered by Google App Engine
This is Rietveld 408576698