mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:30:14 +01:00
Rationale: this convention avoids forcing closely-related code to be far apart in the namespace hierarchy, and vice versa. By the same token, it makes the namespace hierarchy more consistent with the directory hierarchy.
70 lines
2.3 KiB
C++
70 lines
2.3 KiB
C++
// 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/source/source_buffer.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "common/check.h"
|
|
#include "llvm/Support/VirtualFileSystem.h"
|
|
#include "toolchain/diagnostics/diagnostic_emitter.h"
|
|
|
|
namespace Carbon {
|
|
namespace {
|
|
|
|
static constexpr llvm::StringLiteral TestFileName = "test.carbon";
|
|
|
|
TEST(SourceBufferTest, MissingFile) {
|
|
llvm::vfs::InMemoryFileSystem fs;
|
|
auto buffer = SourceBuffer::CreateFromFile(fs, TestFileName,
|
|
ConsoleDiagnosticConsumer());
|
|
EXPECT_FALSE(buffer);
|
|
}
|
|
|
|
TEST(SourceBufferTest, SimpleFile) {
|
|
llvm::vfs::InMemoryFileSystem fs;
|
|
CARBON_CHECK(fs.addFile(TestFileName, /*ModificationTime=*/0,
|
|
llvm::MemoryBuffer::getMemBuffer("Hello World")));
|
|
|
|
auto buffer = SourceBuffer::CreateFromFile(fs, TestFileName,
|
|
ConsoleDiagnosticConsumer());
|
|
ASSERT_TRUE(buffer);
|
|
|
|
EXPECT_EQ(TestFileName, buffer->filename());
|
|
EXPECT_EQ("Hello World", buffer->text());
|
|
}
|
|
|
|
TEST(SourceBufferTest, NoNull) {
|
|
llvm::vfs::InMemoryFileSystem fs;
|
|
static constexpr char NoNull[3] = {'a', 'b', 'c'};
|
|
CARBON_CHECK(fs.addFile(
|
|
TestFileName, /*ModificationTime=*/0,
|
|
llvm::MemoryBuffer::getMemBuffer(llvm::StringRef(NoNull, sizeof(NoNull)),
|
|
/*BufferName=*/"",
|
|
/*RequiresNullTerminator=*/false)));
|
|
|
|
auto buffer = SourceBuffer::CreateFromFile(fs, TestFileName,
|
|
ConsoleDiagnosticConsumer());
|
|
ASSERT_TRUE(buffer);
|
|
|
|
EXPECT_EQ(TestFileName, buffer->filename());
|
|
EXPECT_EQ("abc", buffer->text());
|
|
}
|
|
|
|
TEST(SourceBufferTest, EmptyFile) {
|
|
llvm::vfs::InMemoryFileSystem fs;
|
|
CARBON_CHECK(fs.addFile(TestFileName, /*ModificationTime=*/0,
|
|
llvm::MemoryBuffer::getMemBuffer("")));
|
|
|
|
auto buffer = SourceBuffer::CreateFromFile(fs, TestFileName,
|
|
ConsoleDiagnosticConsumer());
|
|
ASSERT_TRUE(buffer);
|
|
|
|
EXPECT_EQ(TestFileName, buffer->filename());
|
|
EXPECT_EQ("", buffer->text());
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace Carbon
|