mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
PR-URL: https://github.com/nodejs/node/pull/27980 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
35 lines
925 B
C++
35 lines
925 B
C++
#include "node_native_module.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "node_test_fixture.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
using node::native_module::NativeModuleLoader;
|
|
using node::native_module::NativeModuleRecordMap;
|
|
|
|
class PerProcessTest : public ::testing::Test {
|
|
protected:
|
|
static const NativeModuleRecordMap get_sources_for_test() {
|
|
return NativeModuleLoader::instance_.source_;
|
|
}
|
|
};
|
|
|
|
namespace {
|
|
|
|
TEST_F(PerProcessTest, EmbeddedSources) {
|
|
const auto& sources = PerProcessTest::get_sources_for_test();
|
|
ASSERT_TRUE(
|
|
std::any_of(sources.cbegin(), sources.cend(),
|
|
[](auto p){ return p.second.is_one_byte(); }))
|
|
<< "NativeModuleLoader::source_ should have some 8bit items";
|
|
|
|
ASSERT_TRUE(
|
|
std::any_of(sources.cbegin(), sources.cend(),
|
|
[](auto p){ return !p.second.is_one_byte(); }))
|
|
<< "NativeModuleLoader::source_ should have some 16bit items";
|
|
}
|
|
|
|
} // end namespace
|