summaryrefslogtreecommitdiff
path: root/test/cctest/test_per_process.cc
blob: 43af8dd65a72d053f865da90a0259b39b405deeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#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