mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:50:14 +01:00
I'm partly doing this because the current setup would be difficult to share with the toolchain. e.g., ProtoToCarbon isn't explorer-specific, but the only way to run it via CLI is the explorer's fuzzverter. I want a separate tool.
This change:
- Adds a //common/fuzzing:proto_to_carbon tool.
- The rest of fuzzverter is now just //explorer/fuzzing:ast_to_proto.
- The change simplifies overall handling and removes a LLVM CLI dependency.
- Stops allowing unknown fields in the proto.
- This has mostly led to forgetting to remove fuzzer inputs that were for removed features.
- Moves more non-explorer-specific bits to //common/fuzzing.
- Cleans up remaining pieces in //explorer/fuzzing
- Merges the //explorer/fuzzing proto tests, which deduplicates AstToString copies.
- These tests also had duplicate dependencies, etc -- and all complete in ~6s.
- Updates and fixes regen_corpus which was previously broken by other changes.
- Updates the README to reflect changes.
- Removes obsolete proto-fuzzer build configuration (AFAICT this is no longer needed).
74 lines
1.8 KiB
C++
74 lines
1.8 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 "common/fuzzing/proto_to_carbon.h"
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "common/error.h"
|
|
#include "common/fuzzing/carbon.pb.h"
|
|
|
|
namespace Carbon::Testing {
|
|
namespace {
|
|
|
|
TEST(FuzzerUtilTest, ProtoToCarbon) {
|
|
const ErrorOr<Fuzzing::Carbon> carbon_proto = ParseCarbonTextProto(R"(
|
|
compilation_unit {
|
|
package_statement { package_name: "P" }
|
|
is_api: true
|
|
declarations {
|
|
function {
|
|
name {
|
|
name: "Main"
|
|
}
|
|
param_pattern {}
|
|
return_term {
|
|
kind: Expression
|
|
type { int_type_literal {} }
|
|
}
|
|
body {
|
|
statements {
|
|
return_expression_statement {
|
|
expression { int_literal { value: 0 } }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})");
|
|
ASSERT_TRUE(carbon_proto.ok());
|
|
static constexpr char SourceCode[] = R"(// Generated by proto_to_carbon.
|
|
package P api;
|
|
|
|
fn Main() -> i32
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
)";
|
|
EXPECT_THAT(ProtoToCarbon(*carbon_proto, /*maybe_add_main=*/false),
|
|
testing::Eq(SourceCode));
|
|
EXPECT_THAT(ProtoToCarbon(*carbon_proto, /*maybe_add_main=*/true),
|
|
testing::Eq(SourceCode));
|
|
}
|
|
|
|
TEST(FuzzerUtilTest, ParseCarbonTextProtoWithUnknownField) {
|
|
const ErrorOr<Fuzzing::Carbon> carbon_proto = ParseCarbonTextProto(R"(
|
|
compilation_unit {
|
|
garbage: "value"
|
|
declarations {
|
|
choice {
|
|
name {
|
|
name: "Ch"
|
|
}
|
|
}
|
|
}
|
|
})");
|
|
ASSERT_FALSE(carbon_proto.ok());
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace Carbon::Testing
|