Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
testing.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 "testing.h"
6
7#include <utility>
8
9#include "flutter/fml/file.h"
10#include "flutter/fml/paths.h"
11
12namespace flutter {
13namespace testing {
14
15std::string GetCurrentTestName() {
16 return ::testing::UnitTest::GetInstance()->current_test_info()->name();
17}
18
20 return fml::paths::JoinPaths({GetFixturesPath(), "kernel_blob.bin"});
21}
22
24 auto fixtures_directory =
25 OpenDirectory(GetFixturesPath(), // path
26 false, // create
27 fml::FilePermission::kRead // permission
28 );
29
30 if (!fixtures_directory.is_valid()) {
31 FML_LOG(ERROR) << "Could not open fixtures directory.";
32 return {};
33 }
34 return fixtures_directory;
35}
36
37fml::UniqueFD OpenFixture(const std::string& fixture_name) {
38 if (fixture_name.size() == 0) {
39 FML_LOG(ERROR) << "Invalid fixture name.";
40 return {};
41 }
42
43 auto fixtures_directory = OpenFixturesDirectory();
44
45 auto fixture_fd = fml::OpenFile(fixtures_directory, // base directory
46 fixture_name.c_str(), // path
47 false, // create
48 fml::FilePermission::kRead // permission
49 );
50 if (!fixture_fd.is_valid()) {
51 FML_LOG(ERROR) << "Could not open fixture for path: " << GetFixturesPath()
52 << "/" << fixture_name << ".";
53 return {};
54 }
55
56 return fixture_fd;
57}
58
59std::unique_ptr<fml::Mapping> OpenFixtureAsMapping(
60 const std::string& fixture_name) {
62}
63
64sk_sp<SkData> OpenFixtureAsSkData(const std::string& fixture_name) {
65 auto mapping = flutter::testing::OpenFixtureAsMapping(fixture_name);
66 if (!mapping) {
67 return nullptr;
68 }
70 mapping->GetMapping(), mapping->GetSize(),
71 [](const void* ptr, void* context) {
72 delete reinterpret_cast<fml::Mapping*>(context);
73 },
74 mapping.get());
75 mapping.release();
76 return data;
77}
78
80 if (buffer == nullptr) {
81 return false;
82 }
83
84 auto pattern = reinterpret_cast<const uint8_t*>("dErP");
85 constexpr auto pattern_length = 4;
86
87 uint8_t* start = buffer;
88 uint8_t* p = buffer;
89
90 while ((start + size) - p >= pattern_length) {
91 switch (op) {
93 memmove(p, pattern, pattern_length);
94 break;
96 if (memcmp(pattern, p, pattern_length) != 0) {
97 return false;
98 }
99 break;
100 };
101 p += pattern_length;
102 }
103
104 if ((start + size) - p != 0) {
105 switch (op) {
107 memmove(p, pattern, (start + size) - p);
108 break;
110 if (memcmp(pattern, p, (start + size) - p) != 0) {
111 return false;
112 }
113 break;
114 }
115 }
116
117 return true;
118}
119
120bool MemsetPatternSetOrCheck(std::vector<uint8_t>& buffer, MemsetPatternOp op) {
121 return MemsetPatternSetOrCheck(buffer.data(), buffer.size(), op);
122}
123
124} // namespace testing
125} // namespace flutter
static sk_sp< SkData > MakeWithProc(const void *ptr, size_t length, ReleaseProc proc, void *ctx)
Definition SkData.cpp:128
static std::unique_ptr< FileMapping > CreateReadOnly(const std::string &path)
Definition mapping.cc:20
#define FML_LOG(severity)
Definition logging.h:82
std::string GetCurrentTestName()
Gets the name of the currently running test. This is useful in generating logs or assets based on tes...
Definition testing.cc:15
std::string GetDefaultKernelFilePath()
Returns the default path to kernel_blob.bin. This file is within the directory returned by GetFixture...
Definition testing.cc:19
const char * GetFixturesPath()
Returns the directory containing the test fixture for the target if this target has fixtures configur...
bool MemsetPatternSetOrCheck(uint8_t *buffer, size_t size, MemsetPatternOp op)
Depending on the operation, either scribbles a known pattern into the buffer or checks if that patter...
Definition testing.cc:79
sk_sp< SkData > OpenFixtureAsSkData(const std::string &fixture_name)
Opens a fixture of the given file name and returns a Skia SkData holding its contents.
Definition testing.cc:64
fml::UniqueFD OpenFixture(const std::string &fixture_name)
Opens a fixture of the given file name.
Definition testing.cc:37
fml::UniqueFD OpenFixturesDirectory()
Opens the fixtures directory for the unit-test harness.
Definition testing.cc:23
std::unique_ptr< fml::Mapping > OpenFixtureAsMapping(const std::string &fixture_name)
Opens a fixture of the given file name and returns a mapping to its contents.
Definition testing.cc:59
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot data
Definition switches.h:41
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 buffer
Definition switches.h:126
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
std::string JoinPaths(std::initializer_list< std::string > components)
Definition paths.cc:14
fml::UniqueFD OpenFile(const char *path, bool create_if_necessary, FilePermission permission)
This can open a directory on POSIX, but not on Windows.
Definition file_posix.cc:66
#define ERROR(message)