| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #include "toolchain/sem_ir/name_scope.h"
- #include <gmock/gmock.h>
- #include <gtest/gtest.h>
- namespace Carbon::SemIR {
- namespace {
- using ::testing::ElementsAre;
- using ::testing::Field;
- using ::testing::Pair;
- // NOLINTNEXTLINE(modernize-use-trailing-return-type): From the macro.
- MATCHER_P(NameScopeEntryEquals, entry, "") {
- return ExplainMatchResult(
- AllOf(Field("name_id", &NameScope::Entry::name_id, entry.name_id),
- Field("inst_id", &NameScope::Entry::inst_id, entry.inst_id),
- Field("access_kind", &NameScope::Entry::access_kind,
- entry.access_kind)),
- arg, result_listener);
- }
- TEST(NameScope, Empty) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id(++id);
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- EXPECT_THAT(name_scope.entries(), ElementsAre());
- EXPECT_THAT(name_scope.extended_scopes(), ElementsAre());
- EXPECT_EQ(name_scope.inst_id(), scope_inst_id);
- EXPECT_EQ(name_scope.name_id(), scope_name_id);
- EXPECT_EQ(name_scope.parent_scope_id(), parent_scope_id);
- EXPECT_FALSE(name_scope.has_error());
- EXPECT_FALSE(name_scope.is_closed_import());
- EXPECT_FALSE(name_scope.is_imported_package());
- EXPECT_THAT(name_scope.import_ir_scopes(), ElementsAre());
- }
- TEST(NameScope, Lookup) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id(++id);
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- NameScope::Entry entry1 = {.name_id = NameId(++id),
- .inst_id = InstId(++id),
- .access_kind = AccessKind::Public};
- name_scope.AddRequired(entry1);
- NameScope::Entry entry2 = {.name_id = NameId(++id),
- .inst_id = InstId(++id),
- .access_kind = AccessKind::Protected};
- name_scope.AddRequired(entry2);
- NameScope::Entry entry3 = {.name_id = NameId(++id),
- .inst_id = InstId(++id),
- .access_kind = AccessKind::Private};
- name_scope.AddRequired(entry3);
- auto lookup = name_scope.Lookup(entry1.name_id);
- ASSERT_NE(lookup, std::nullopt);
- EXPECT_THAT(static_cast<NameScope&>(name_scope).GetEntry(*lookup),
- NameScopeEntryEquals(entry1));
- EXPECT_THAT(static_cast<const NameScope&>(name_scope).GetEntry(*lookup),
- NameScopeEntryEquals(entry1));
- lookup = name_scope.Lookup(entry2.name_id);
- ASSERT_NE(lookup, std::nullopt);
- EXPECT_THAT(name_scope.GetEntry(*lookup), NameScopeEntryEquals(entry2));
- lookup = name_scope.Lookup(entry3.name_id);
- ASSERT_NE(lookup, std::nullopt);
- EXPECT_THAT(name_scope.GetEntry(*lookup), NameScopeEntryEquals(entry3));
- NameId unknown_name_id(++id);
- lookup = name_scope.Lookup(unknown_name_id);
- EXPECT_EQ(lookup, std::nullopt);
- }
- TEST(NameScope, LookupOrPoison) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id(++id);
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- NameScope::Entry entry1 = {.name_id = NameId(++id),
- .inst_id = InstId(++id),
- .access_kind = AccessKind::Public};
- name_scope.AddRequired(entry1);
- NameScope::Entry entry2 = {.name_id = NameId(++id),
- .inst_id = InstId(++id),
- .access_kind = AccessKind::Protected};
- name_scope.AddRequired(entry2);
- NameScope::Entry entry3 = {.name_id = NameId(++id),
- .inst_id = InstId(++id),
- .access_kind = AccessKind::Private};
- name_scope.AddRequired(entry3);
- auto lookup = name_scope.LookupOrPoison(entry1.name_id);
- ASSERT_NE(lookup, std::nullopt);
- EXPECT_THAT(static_cast<NameScope&>(name_scope).GetEntry(*lookup),
- NameScopeEntryEquals(entry1));
- EXPECT_THAT(static_cast<const NameScope&>(name_scope).GetEntry(*lookup),
- NameScopeEntryEquals(entry1));
- lookup = name_scope.LookupOrPoison(entry2.name_id);
- ASSERT_NE(lookup, std::nullopt);
- EXPECT_THAT(name_scope.GetEntry(*lookup), NameScopeEntryEquals(entry2));
- lookup = name_scope.LookupOrPoison(entry3.name_id);
- ASSERT_NE(lookup, std::nullopt);
- EXPECT_THAT(name_scope.GetEntry(*lookup), NameScopeEntryEquals(entry3));
- NameId unknown_name_id(++id);
- lookup = name_scope.LookupOrPoison(unknown_name_id);
- EXPECT_EQ(lookup, std::nullopt);
- }
- TEST(NameScope, LookupOrAdd) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id(++id);
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- NameScope::Entry entry1 = {.name_id = NameId(++id),
- .inst_id = InstId(++id),
- .access_kind = AccessKind::Public};
- {
- auto [added, entry_id] = name_scope.LookupOrAdd(
- entry1.name_id, entry1.inst_id, entry1.access_kind);
- EXPECT_TRUE(added);
- EXPECT_THAT(name_scope.GetEntry(entry_id), NameScopeEntryEquals(entry1));
- }
- NameScope::Entry entry2 = {.name_id = NameId(++id),
- .inst_id = InstId(++id),
- .access_kind = AccessKind::Protected};
- {
- auto [added, entry_id] = name_scope.LookupOrAdd(
- entry2.name_id, entry2.inst_id, entry2.access_kind);
- EXPECT_TRUE(added);
- EXPECT_THAT(name_scope.GetEntry(entry_id), NameScopeEntryEquals(entry2));
- }
- NameScope::Entry entry3 = {.name_id = NameId(++id),
- .inst_id = InstId(++id),
- .access_kind = AccessKind::Private};
- {
- auto [added, entry_id] = name_scope.LookupOrAdd(
- entry3.name_id, entry3.inst_id, entry3.access_kind);
- EXPECT_TRUE(added);
- EXPECT_THAT(name_scope.GetEntry(entry_id), NameScopeEntryEquals(entry3));
- }
- {
- auto [added, entry_id] = name_scope.LookupOrAdd(
- entry1.name_id, entry1.inst_id, entry1.access_kind);
- EXPECT_FALSE(added);
- EXPECT_THAT(name_scope.GetEntry(entry_id), NameScopeEntryEquals(entry1));
- }
- {
- auto [added, entry_id] = name_scope.LookupOrAdd(
- entry2.name_id, entry2.inst_id, entry2.access_kind);
- EXPECT_FALSE(added);
- EXPECT_THAT(name_scope.GetEntry(entry_id), NameScopeEntryEquals(entry2));
- }
- {
- auto [added, entry_id] = name_scope.LookupOrAdd(
- entry3.name_id, entry3.inst_id, entry3.access_kind);
- EXPECT_FALSE(added);
- EXPECT_THAT(name_scope.GetEntry(entry_id), NameScopeEntryEquals(entry3));
- }
- }
- TEST(NameScope, Poison) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id(++id);
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- NameId poison1(++id);
- EXPECT_EQ(name_scope.LookupOrPoison(poison1), std::nullopt);
- EXPECT_THAT(name_scope.entries(),
- ElementsAre(NameScopeEntryEquals(
- NameScope::Entry({.name_id = poison1,
- .inst_id = InstId::Invalid,
- .access_kind = AccessKind::Public,
- .is_poisoned = true}))));
- NameId poison2(++id);
- EXPECT_EQ(name_scope.LookupOrPoison(poison2), std::nullopt);
- EXPECT_THAT(name_scope.entries(),
- ElementsAre(NameScopeEntryEquals(NameScope::Entry(
- {.name_id = poison1,
- .inst_id = InstId::Invalid,
- .access_kind = AccessKind::Public,
- .is_poisoned = true})),
- NameScopeEntryEquals(NameScope::Entry(
- {.name_id = poison2,
- .inst_id = InstId::Invalid,
- .access_kind = AccessKind::Public,
- .is_poisoned = true}))));
- auto lookup = name_scope.Lookup(poison1);
- ASSERT_NE(lookup, std::nullopt);
- EXPECT_THAT(
- name_scope.GetEntry(*lookup),
- NameScopeEntryEquals(NameScope::Entry({.name_id = poison1,
- .inst_id = InstId::Invalid,
- .access_kind = AccessKind::Public,
- .is_poisoned = true})));
- }
- TEST(NameScope, AddRequiredAfterPoison) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id(++id);
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- NameId name_id(++id);
- InstId inst_id(++id);
- EXPECT_EQ(name_scope.LookupOrPoison(name_id), std::nullopt);
- EXPECT_THAT(name_scope.entries(),
- ElementsAre(NameScopeEntryEquals(
- NameScope::Entry({.name_id = name_id,
- .inst_id = InstId::Invalid,
- .access_kind = AccessKind::Public,
- .is_poisoned = true}))));
- NameScope::Entry entry = {.name_id = name_id,
- .inst_id = inst_id,
- .access_kind = AccessKind::Private};
- name_scope.AddRequired(entry);
- auto lookup = name_scope.LookupOrPoison(name_id);
- ASSERT_NE(lookup, std::nullopt);
- EXPECT_THAT(
- name_scope.GetEntry(*lookup),
- NameScopeEntryEquals(NameScope::Entry({.name_id = name_id,
- .inst_id = inst_id,
- .access_kind = AccessKind::Private,
- .is_poisoned = false})));
- }
- TEST(NameScope, ExtendedScopes) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id = NameScopeId::Package;
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- EXPECT_THAT(name_scope.extended_scopes(), ElementsAre());
- InstId extended_scope1(++id);
- name_scope.AddExtendedScope(extended_scope1);
- EXPECT_THAT(name_scope.extended_scopes(), ElementsAre(extended_scope1));
- InstId extended_scope2(++id);
- name_scope.AddExtendedScope(extended_scope2);
- EXPECT_THAT(name_scope.extended_scopes(),
- ElementsAre(extended_scope1, extended_scope2));
- }
- TEST(NameScope, HasError) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id(++id);
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- EXPECT_FALSE(name_scope.has_error());
- name_scope.set_has_error();
- EXPECT_TRUE(name_scope.has_error());
- name_scope.set_has_error();
- EXPECT_TRUE(name_scope.has_error());
- }
- TEST(NameScope, IsClosedImport) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id(++id);
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- EXPECT_FALSE(name_scope.is_closed_import());
- name_scope.set_is_closed_import(true);
- EXPECT_TRUE(name_scope.is_closed_import());
- name_scope.set_is_closed_import(false);
- EXPECT_FALSE(name_scope.is_closed_import());
- }
- TEST(NameScope, IsImportedPackageParentNonPackageScope) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id(++id);
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- EXPECT_FALSE(name_scope.is_imported_package());
- name_scope.set_is_closed_import(true);
- EXPECT_FALSE(name_scope.is_imported_package());
- name_scope.set_is_closed_import(false);
- EXPECT_FALSE(name_scope.is_imported_package());
- }
- TEST(NameScope, IsImportedPackageParentPackageScope) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id = NameScopeId::Package;
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- EXPECT_FALSE(name_scope.is_imported_package());
- name_scope.set_is_closed_import(true);
- EXPECT_TRUE(name_scope.is_imported_package());
- name_scope.set_is_closed_import(false);
- EXPECT_FALSE(name_scope.is_imported_package());
- }
- TEST(NameScope, ImportIRScopes) {
- int id = 0;
- InstId scope_inst_id(++id);
- NameId scope_name_id(++id);
- NameScopeId parent_scope_id = NameScopeId::Package;
- NameScope name_scope(scope_inst_id, scope_name_id, parent_scope_id);
- EXPECT_THAT(name_scope.import_ir_scopes(), ElementsAre());
- ImportIRId import_ir_id1(++id);
- NameScopeId import_name_scope_id1(++id);
- name_scope.AddImportIRScope({import_ir_id1, import_name_scope_id1});
- EXPECT_THAT(name_scope.import_ir_scopes(),
- ElementsAre(Pair(import_ir_id1, import_name_scope_id1)));
- ImportIRId import_ir_id2(++id);
- NameScopeId import_name_scope_id2(++id);
- name_scope.AddImportIRScope({import_ir_id2, import_name_scope_id2});
- EXPECT_THAT(name_scope.import_ir_scopes(),
- ElementsAre(Pair(import_ir_id1, import_name_scope_id1),
- Pair(import_ir_id2, import_name_scope_id2)));
- }
- } // namespace
- } // namespace Carbon::SemIR
|