forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reland Dart plugin registrant (flutter#25496)
- Loading branch information
Emmanuel Garcia
authored
Apr 12, 2021
1 parent
4bc4143
commit 8c112c6
Showing
23 changed files
with
302 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Copyright 2013 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
void passMessage(String message) native 'PassMessage'; | ||
|
||
void main() { | ||
passMessage('main() was called'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// Copyright 2013 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
#include "flutter/runtime/dart_isolate.h" | ||
|
||
#include "flutter/fml/paths.h" | ||
#include "flutter/runtime/dart_vm.h" | ||
#include "flutter/runtime/dart_vm_lifecycle.h" | ||
#include "flutter/testing/dart_isolate_runner.h" | ||
#include "flutter/testing/fixture_test.h" | ||
#include "flutter/testing/testing.h" | ||
|
||
namespace flutter { | ||
namespace testing { | ||
|
||
const std::string kernel_file_name = "no_plugin_registrant_kernel_blob.bin"; | ||
const std::string elf_file_name = "no_plugin_registrant_app_elf_snapshot.so"; | ||
|
||
class DartIsolateTest : public FixtureTest { | ||
public: | ||
DartIsolateTest() : FixtureTest(kernel_file_name, elf_file_name, "") {} | ||
}; | ||
|
||
TEST_F(DartIsolateTest, DartPluginRegistrantIsNotPresent) { | ||
ASSERT_FALSE(DartVMRef::IsInstanceRunning()); | ||
|
||
std::vector<std::string> messages; | ||
fml::AutoResetWaitableEvent latch; | ||
|
||
AddNativeCallback( | ||
"PassMessage", | ||
CREATE_NATIVE_ENTRY(([&latch, &messages](Dart_NativeArguments args) { | ||
auto message = tonic::DartConverter<std::string>::FromDart( | ||
Dart_GetNativeArgument(args, 0)); | ||
messages.push_back(message); | ||
latch.Signal(); | ||
}))); | ||
|
||
auto settings = CreateSettingsForFixture(); | ||
auto did_throw_exception = false; | ||
settings.unhandled_exception_callback = [&](const std::string& error, | ||
const std::string& stack_trace) { | ||
did_throw_exception = true; | ||
return true; | ||
}; | ||
|
||
auto vm_ref = DartVMRef::Create(settings); | ||
auto thread = CreateNewThread(); | ||
TaskRunners task_runners(GetCurrentTestName(), // | ||
thread, // | ||
thread, // | ||
thread, // | ||
thread // | ||
); | ||
|
||
auto kernel_path = | ||
fml::paths::JoinPaths({GetFixturesPath(), kernel_file_name}); | ||
auto isolate = RunDartCodeInIsolate(vm_ref, settings, task_runners, "main", | ||
{}, kernel_path); | ||
|
||
ASSERT_TRUE(isolate); | ||
ASSERT_EQ(isolate->get()->GetPhase(), DartIsolate::Phase::Running); | ||
|
||
latch.Wait(); | ||
|
||
ASSERT_EQ(messages.size(), 1u); | ||
ASSERT_EQ(messages[0], "main() was called"); | ||
ASSERT_FALSE(did_throw_exception); | ||
} | ||
|
||
} // namespace testing | ||
} // namespace flutter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.