Flutter Engine
The 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
#define TEST(S, s, D, expected)
const SkPath & path() const
Definition path.h:117
union flutter::testing::@2838::KeyboardChange::@76 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:85
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 switches.h:57
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 to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace Enable an endless trace buffer The default is a ring buffer This is useful when very old events need to viewed For during application launch Memory usage will continue to grow indefinitely however Start app with an specific route defined on the framework flutter assets dir
Definition switches.h:145
it will be possible to load the file into Perfetto s trace viewer 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
Definition switches.h:259
#define EXPECT_TRUE(handle)
Definition unit_test.h:685