mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-15 03:41:34 +00:00
BUG=tint:50 Change-Id: Ie19a1af6a97a49a67dcc7474991c960b986ddebe Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/19782 Reviewed-by: David Neto <dneto@google.com>
97 lines
3.0 KiB
C++
97 lines
3.0 KiB
C++
// Copyright 2020 The Tint Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "src/reader/wgsl/parser_impl.h"
|
|
#include "src/reader/wgsl/parser_impl_test_helper.h"
|
|
|
|
namespace tint {
|
|
namespace reader {
|
|
namespace wgsl {
|
|
namespace {
|
|
|
|
TEST_F(ParserImplTest, ImportDecl_Import) {
|
|
auto* p = parser(R"(import "GLSL.std.450" as glsl)");
|
|
|
|
auto import = p->import_decl();
|
|
ASSERT_NE(import, nullptr);
|
|
ASSERT_FALSE(p->has_error()) << p->error();
|
|
|
|
EXPECT_EQ("GLSL.std.450", import->path());
|
|
EXPECT_EQ("glsl", import->name());
|
|
EXPECT_EQ(1u, import->line());
|
|
EXPECT_EQ(1u, import->column());
|
|
}
|
|
|
|
TEST_F(ParserImplTest, ImportDecl_Import_WithNamespace) {
|
|
auto* p = parser(R"(import "GLSL.std.450" as std::glsl)");
|
|
auto import = p->import_decl();
|
|
ASSERT_NE(import, nullptr);
|
|
ASSERT_FALSE(p->has_error()) << p->error();
|
|
EXPECT_EQ("std::glsl", import->name());
|
|
}
|
|
|
|
TEST_F(ParserImplTest, ImportDecl_Invalid_MissingPath) {
|
|
auto* p = parser(R"(import as glsl)");
|
|
auto import = p->import_decl();
|
|
ASSERT_EQ(import, nullptr);
|
|
ASSERT_TRUE(p->has_error());
|
|
EXPECT_EQ(p->error(), "1:8: missing path for import");
|
|
}
|
|
|
|
TEST_F(ParserImplTest, ImportDecl_Invalid_EmptyPath) {
|
|
auto* p = parser(R"(import "" as glsl)");
|
|
auto import = p->import_decl();
|
|
ASSERT_EQ(import, nullptr);
|
|
ASSERT_TRUE(p->has_error());
|
|
EXPECT_EQ(p->error(), "1:8: import path must not be empty");
|
|
}
|
|
|
|
TEST_F(ParserImplTest, ImportDecl_Invalid_NameMissingTerminatingIdentifier) {
|
|
auto* p = parser(R"(import "GLSL.std.450" as glsl::)");
|
|
auto import = p->import_decl();
|
|
ASSERT_EQ(import, nullptr);
|
|
ASSERT_TRUE(p->has_error());
|
|
EXPECT_EQ(p->error(), "1:32: invalid name for import");
|
|
}
|
|
|
|
TEST_F(ParserImplTest, ImportDecl_Invalid_NameInvalid) {
|
|
auto* p = parser(R"(import "GLSL.std.450" as 12glsl)");
|
|
auto import = p->import_decl();
|
|
ASSERT_EQ(import, nullptr);
|
|
ASSERT_TRUE(p->has_error());
|
|
EXPECT_EQ(p->error(), "1:26: invalid name for import");
|
|
}
|
|
|
|
TEST_F(ParserImplTest, ImportDecl_Invalid_MissingName) {
|
|
auto* p = parser(R"(import "GLSL.std.450" as)");
|
|
auto import = p->import_decl();
|
|
ASSERT_EQ(import, nullptr);
|
|
ASSERT_TRUE(p->has_error());
|
|
EXPECT_EQ(p->error(), "1:25: missing name for import");
|
|
}
|
|
|
|
TEST_F(ParserImplTest, ImportDecl_Invalid_MissingAs) {
|
|
auto* p = parser(R"(import "GLSL.std.450" glsl)");
|
|
auto import = p->import_decl();
|
|
ASSERT_EQ(import, nullptr);
|
|
ASSERT_TRUE(p->has_error());
|
|
EXPECT_EQ(p->error(), "1:23: missing 'as' for import");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace wgsl
|
|
} // namespace reader
|
|
} // namespace tint
|