Roll src/third_party/WebKit ef7cfd7:80927b2 (svn 194570:194575)
[chromium-blink-merge.git] / ppapi / tests / test_file_system.cc
blob858e2e3e6ae5408022b75eb5542ae8b219754149
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ppapi/tests/test_file_system.h"
7 #include <string.h>
9 #include "ppapi/c/pp_errors.h"
10 #include "ppapi/cpp/file_io.h"
11 #include "ppapi/cpp/file_system.h"
12 #include "ppapi/cpp/resource.h"
13 #include "ppapi/tests/test_utils.h"
14 #include "ppapi/tests/testing_instance.h"
16 REGISTER_TEST_CASE(FileSystem);
18 bool TestFileSystem::Init() {
19 return CheckTestingInterface() && EnsureRunningOverHTTP();
22 void TestFileSystem::RunTests(const std::string& filter) {
23 RUN_CALLBACK_TEST(TestFileSystem, Open, filter);
24 RUN_CALLBACK_TEST(TestFileSystem, MultipleOpens, filter);
25 RUN_CALLBACK_TEST(TestFileSystem, ResourceConversion, filter);
28 std::string TestFileSystem::TestOpen() {
29 TestCompletionCallback callback(instance_->pp_instance(), callback_type());
31 // Open.
32 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
33 callback.WaitForResult(file_system.Open(1024, callback.GetCallback()));
34 CHECK_CALLBACK_BEHAVIOR(callback);
35 ASSERT_EQ(PP_OK, callback.result());
37 // Open aborted.
38 int32_t rv = 0;
40 pp::FileSystem fs(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
41 rv = fs.Open(1024, callback.GetCallback());
43 callback.WaitForAbortResult(rv);
44 CHECK_CALLBACK_BEHAVIOR(callback);
46 PASS();
49 std::string TestFileSystem::TestMultipleOpens() {
50 // Should not allow multiple opens, regardless of whether or not the first
51 // open has completed.
52 TestCompletionCallback callback_1(instance_->pp_instance(), callback_type());
53 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
54 int32_t rv_1 = file_system.Open(1024, callback_1.GetCallback());
56 TestCompletionCallback callback_2(instance_->pp_instance(), callback_type());
57 callback_2.WaitForResult(file_system.Open(1024, callback_2.GetCallback()));
58 CHECK_CALLBACK_BEHAVIOR(callback_2);
59 // FileSystem should not allow multiple opens.
60 ASSERT_NE(PP_OK, callback_2.result());
62 callback_1.WaitForResult(rv_1);
63 CHECK_CALLBACK_BEHAVIOR(callback_1);
64 ASSERT_EQ(PP_OK, callback_1.result());
66 TestCompletionCallback callback_3(instance_->pp_instance(), callback_type());
67 callback_3.WaitForResult(file_system.Open(1024, callback_3.GetCallback()));
68 CHECK_CALLBACK_BEHAVIOR(callback_3);
69 ASSERT_NE(PP_OK, callback_3.result());
71 PASS();
74 std::string TestFileSystem::TestResourceConversion() {
75 // Test conversion from file system Resource to FileSystem.
76 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
77 pp::Resource file_system_resource(file_system);
78 ASSERT_TRUE(pp::FileSystem::IsFileSystem(file_system_resource));
79 pp::FileSystem file_system_resource_file_system(file_system_resource);
80 ASSERT_FALSE(file_system_resource_file_system.is_null());
82 // Test conversion that a non-file system Resource does not register as a
83 // FileSystem. (We cannot test conversion, since this is an assertion on a
84 // debug build.)
85 pp::FileIO non_file_system(instance_);
86 pp::Resource non_file_system_resource(non_file_system);
87 ASSERT_FALSE(pp::FileSystem::IsFileSystem(non_file_system_resource));
89 PASS();