[READ ONLY MIRROR] Envoy REST/proto API definitions and documentation. (grpc依赖)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
3.0 KiB

#include <iostream>
#include <cstdlib>
// We don't use all the headers in the test below, but including them anyway as
// a cheap way to get some C++ compiler sanity checking.
#include "envoy/api/v2/protocol.pb.validate.h"
#include "envoy/api/v2/cluster/cluster.pb.validate.h"
#include "envoy/api/v2/filter/accesslog/accesslog.pb.validate.h"
#include "envoy/api/v2/filter/http/buffer.pb.validate.h"
#include "envoy/api/v2/filter/http/fault.pb.validate.h"
#include "envoy/api/v2/filter/http/health_check.pb.validate.h"
#include "envoy/api/v2/filter/http/gzip.pb.validate.h"
#include "envoy/api/v2/filter/http/lua.pb.validate.h"
#include "envoy/api/v2/filter/http/router.pb.validate.h"
#include "envoy/api/v2/filter/http/squash.pb.validate.h"
#include "envoy/api/v2/filter/http/transcoder.pb.validate.h"
#include "envoy/api/v2/filter/network/http_connection_manager.pb.validate.h"
#include "envoy/api/v2/filter/network/mongo_proxy.pb.validate.h"
#include "envoy/api/v2/filter/network/redis_proxy.pb.validate.h"
#include "envoy/api/v2/filter/network/tcp_proxy.pb.validate.h"
#include "envoy/api/v2/listener/listener.pb.validate.h"
#include "envoy/api/v2/route/route.pb.validate.h"
#include "envoy/config/bootstrap/v2/bootstrap.pb.validate.h"
#include "envoy/service/discovery/v2/cds.pb.validate.h"
#include "envoy/service/discovery/v2/eds.pb.validate.h"
#include "envoy/service/discovery/v2/lds.pb.validate.h"
#include "envoy/service/discovery/v2/rds.pb.validate.h"
#include "google/protobuf/text_format.h"
template <class Proto> struct TestCase {
void run() {
std::string err;
if (Validate(invalid_message, &err)) {
std::cerr << "Unexpected successful validation of invalid message: "
<< invalid_message.DebugString() << std::endl;
exit(EXIT_FAILURE);
}
if (!Validate(valid_message, &err)) {
std::cerr << "Unexpected failed validation of valid message: " << valid_message.DebugString()
<< ", " << err << std::endl;
exit(EXIT_FAILURE);
}
}
Proto& invalid_message;
Proto& valid_message;
};
// Basic protoc-gen-validate C++ validation header inclusion and Validate calls
// from data-plane-api.
int main(int argc, char* argv[]) {
envoy::config::bootstrap::v2::Bootstrap invalid_bootstrap;
// This is a baseline test of the validation features we care about. It's
// probably not worth adding in every filter and field that we want to valid
// in the API upfront, but as regressions occur, this is the place to add the
// specific case.
const std::string valid_bootstrap_text = R"EOF(
node {}
cluster_manager {}
admin {
access_log_path: "/dev/null"
address {}
}
)EOF";
envoy::config::bootstrap::v2::Bootstrap valid_bootstrap;
if (!google::protobuf::TextFormat::ParseFromString(valid_bootstrap_text, &valid_bootstrap)) {
std::cerr << "Unable to parse text proto: " << valid_bootstrap_text << std::endl;
exit(EXIT_FAILURE);
}
TestCase<envoy::config::bootstrap::v2::Bootstrap>{invalid_bootstrap, valid_bootstrap}.run();
exit(EXIT_SUCCESS);
}