Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
flutter::testing::TypeConversionsTest Class Reference
Inheritance diagram for flutter::testing::TypeConversionsTest:
flutter::testing::FixtureTest flutter::testing::DartFixture flutter::testing::ThreadTest

Public Member Functions

 TypeConversionsTest ()
 
 ~TypeConversionsTest ()=default
 
bool RunWithEntrypoint (const std::string &entrypoint)
 
- Public Member Functions inherited from flutter::testing::FixtureTest
 FixtureTest ()
 
 FixtureTest (std::string kernel_filename, std::string elf_filename, std::string elf_split_filename)
 
- Public Member Functions inherited from flutter::testing::DartFixture
 DartFixture ()
 
 DartFixture (std::string kernel_filename, std::string elf_filename, std::string elf_split_filename)
 
virtual Settings CreateSettingsForFixture ()
 
void AddNativeCallback (const std::string &name, Dart_NativeFunction callback)
 
void AddFfiNativeCallback (const std::string &name, void *callback_ptr)
 
- Public Member Functions inherited from flutter::testing::ThreadTest
 ThreadTest ()
 
fml::RefPtr< fml::TaskRunnerGetCurrentTaskRunner ()
 Get the task runner for the thread that the current unit-test is running on. This creates a message loop as necessary.
 
fml::RefPtr< fml::TaskRunnerCreateNewThread (const std::string &name="")
 Creates a new thread, initializes a message loop on it, and, returns its task runner to the unit-test. The message loop is terminated (and its thread joined) when the test ends. This allows tests to create multiple named threads as necessary.
 

Additional Inherited Members

- Protected Member Functions inherited from flutter::testing::DartFixture
void SetSnapshotsAndAssets (Settings &settings)
 
- Protected Attributes inherited from flutter::testing::DartFixture
std::shared_ptr< TestDartNativeResolvernative_resolver_
 
ELFAOTSymbols split_aot_symbols_
 
std::string kernel_filename_
 
std::string elf_filename_
 
fml::UniqueFD assets_dir_
 
ELFAOTSymbols aot_symbols_
 

Detailed Description

Definition at line 17 of file type_conversions_unittests.cc.

Constructor & Destructor Documentation

◆ TypeConversionsTest()

flutter::testing::TypeConversionsTest::TypeConversionsTest ( )
inline

Definition at line 19 of file type_conversions_unittests.cc.

20 : settings_(CreateSettingsForFixture()),
21 vm_(DartVMRef::Create(settings_)) {}
static DartVMRef Create(const Settings &settings, fml::RefPtr< const DartSnapshot > vm_snapshot=nullptr, fml::RefPtr< const DartSnapshot > isolate_snapshot=nullptr)
virtual Settings CreateSettingsForFixture()

◆ ~TypeConversionsTest()

flutter::testing::TypeConversionsTest::~TypeConversionsTest ( )
default

Member Function Documentation

◆ RunWithEntrypoint()

bool flutter::testing::TypeConversionsTest::RunWithEntrypoint ( const std::string &  entrypoint)
inline

Definition at line 25 of file type_conversions_unittests.cc.

25 {
26 if (running_isolate_) {
27 return false;
28 }
29 auto thread = CreateNewThread();
30 TaskRunners single_threaded_task_runner(GetCurrentTestName(), thread,
31 thread, thread, thread);
32 auto isolate =
33 RunDartCodeInIsolate(vm_, settings_, single_threaded_task_runner,
34 entrypoint, {}, GetDefaultKernelFilePath());
35 if (!isolate || isolate->get()->GetPhase() != DartIsolate::Phase::Running) {
36 return false;
37 }
38
39 running_isolate_ = std::move(isolate);
40 return true;
41 }
fml::RefPtr< fml::TaskRunner > CreateNewThread(const std::string &name="")
Creates a new thread, initializes a message loop on it, and, returns its task runner to the unit-test...
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
std::unique_ptr< AutoIsolateShutdown > RunDartCodeInIsolate(DartVMRef &vm_ref, const Settings &settings, const TaskRunners &task_runners, std::string entrypoint, const std::vector< std::string > &args, const std::string &kernel_file_path, fml::WeakPtr< IOManager > io_manager, std::shared_ptr< VolatilePathTracker > volatile_path_tracker, std::unique_ptr< PlatformConfiguration > platform_configuration)

The documentation for this class was generated from the following file: