blob: 89fbd58aa482884779cd0fb0743d7ab0d4beb25e [file] [log] [blame]
// 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.
#include "services/files/files_test_base.h"
#include "mojo/public/cpp/application/application_impl.h"
#include "mojo/services/files/interfaces/directory.mojom.h"
#include "mojo/services/files/interfaces/types.mojom.h"
namespace mojo {
namespace files {
FilesTestBase::FilesTestBase() {
}
FilesTestBase::~FilesTestBase() {
}
void FilesTestBase::SetUp() {
test::ApplicationTestBase::SetUp();
application_impl()->ConnectToService("mojo:files", &files_);
}
void FilesTestBase::GetTemporaryRoot(DirectoryPtr* directory) {
Error error = Error::INTERNAL;
files()->OpenFileSystem(nullptr, GetProxy(directory), Capture(&error));
ASSERT_TRUE(files().WaitForIncomingResponse());
ASSERT_EQ(Error::OK, error);
}
void FilesTestBase::GetAppPersistentCacheRoot(DirectoryPtr* directory) {
Error error = Error::INTERNAL;
files()->OpenFileSystem("app_persistent_cache", GetProxy(directory),
Capture(&error));
ASSERT_TRUE(files().WaitForIncomingResponse());
ASSERT_EQ(Error::OK, error);
}
} // namespace files
} // namespace mojo