Flutter Engine
 
Loading...
Searching...
No Matches
file_unittest.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter 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.
4
5#include "filesystem/file.h"
6
7#include <fcntl.h>
8
9#include "filesystem/path.h"
10#include "filesystem/scoped_temp_dir.h"
11#include "gtest/gtest.h"
12
13namespace filesystem {
14namespace {
15
16TEST(File, GetFileSize) {
17 ScopedTempDir dir;
18 std::string path;
19
20 ASSERT_TRUE(dir.NewTempFile(&path));
21
22 uint64_t size;
23 EXPECT_TRUE(GetFileSize(path, &size));
24 EXPECT_EQ(0u, size);
25
26 std::string content = "Hello World";
27 ASSERT_TRUE(WriteFile(path, content.data(), content.size()));
28 EXPECT_TRUE(GetFileSize(path, &size));
29 EXPECT_EQ(content.size(), size);
30}
31
32TEST(File, WriteFileInTwoPhases) {
33 ScopedTempDir dir;
34 std::string path = dir.path() + "/destination";
35
36 std::string content = "Hello World";
37 ASSERT_TRUE(WriteFileInTwoPhases(path, content, dir.path()));
38 std::string read_content;
39 ASSERT_TRUE(ReadFileToString(path, &read_content));
40 EXPECT_EQ(read_content, content);
41}
42
43#if defined(OS_LINUX) || defined(OS_FUCHSIA)
44TEST(File, IsFileAt) {
45 ScopedTempDir dir;
46 std::string path;
47
48 ASSERT_TRUE(dir.NewTempFile(&path));
49
50 fxl::UniqueFD dirfd(open(dir.path().c_str(), O_RDONLY));
51 ASSERT_TRUE(dirfd.get() != -1);
52 EXPECT_TRUE(IsFileAt(dirfd.get(), GetBaseName(path)));
53}
54#endif
55
56} // namespace
57} // namespace filesystem
union flutter::testing::@2824::KeyboardChange::@78 content
bool WriteFile(const std::string &path, const char *data, ssize_t size)
Definition files.cc:69
std::string GetBaseName(const std::string &path)
bool ReadFileToString(const std::string &path, std::string *result)
Definition file.cc:86
TEST(Directory, CreateDirectory)
it will be possible to load the file into Perfetto s trace viewer use test Running tests that layout and measure text will not yield consistent results across various platforms Enabling this option will make font resolution default to the Ahem test font on all disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir path
Definition switch_defs.h:52