commit
ff8b042ad3
6 changed files with 68 additions and 6 deletions
@ -0,0 +1,52 @@ |
|||||||
|
|
||||||
|
#include "tests/upb_test.h" |
||||||
|
#include "upb/bindings/stdc++/string.h" |
||||||
|
#include "upb/descriptor/descriptor.upb.h" |
||||||
|
#include "upb/pb/decoder.h" |
||||||
|
#include "upb/pb/encoder.h" |
||||||
|
#include "upb/pb/glue.h" |
||||||
|
|
||||||
|
std::string read_string(const char *filename) { |
||||||
|
size_t len; |
||||||
|
char *str = upb_readfile(filename, &len); |
||||||
|
ASSERT(str); |
||||||
|
if (!str) { return std::string(); } |
||||||
|
std::string ret = std::string(str, len); |
||||||
|
free(str); |
||||||
|
return ret; |
||||||
|
} |
||||||
|
|
||||||
|
void test_pb_roundtrip() { |
||||||
|
upb::reffed_ptr<const upb::MessageDef> md( |
||||||
|
upbdefs::google::protobuf::FileDescriptorSet::MessageDef()); |
||||||
|
upb::reffed_ptr<const upb::Handlers> encoder_handlers( |
||||||
|
upb::pb::Encoder::NewHandlers(md.get())); |
||||||
|
upb::reffed_ptr<const upb::pb::DecoderMethod> method( |
||||||
|
upb::pb::DecoderMethod::New( |
||||||
|
upb::pb::DecoderMethodOptions(encoder_handlers.get()))); |
||||||
|
|
||||||
|
char buf[512]; |
||||||
|
upb::SeededAllocator alloc(buf, sizeof(buf)); |
||||||
|
upb::Environment env; |
||||||
|
env.SetAllocator(&alloc); |
||||||
|
std::string input = read_string("upb/descriptor/descriptor.pb"); |
||||||
|
std::string output; |
||||||
|
upb::StringSink string_sink(&output); |
||||||
|
upb::pb::Encoder* encoder = |
||||||
|
upb::pb::Encoder::Create(&env, encoder_handlers.get(), |
||||||
|
string_sink.input()); |
||||||
|
upb::pb::Decoder* decoder = |
||||||
|
upb::pb::Decoder::Create(&env, method.get(), encoder->input()); |
||||||
|
bool ok = upb::BufferSource::PutBuffer(input, decoder->input()); |
||||||
|
ASSERT(ok); |
||||||
|
ASSERT(input == output); |
||||||
|
} |
||||||
|
|
||||||
|
extern "C" { |
||||||
|
int run_tests(int argc, char *argv[]) { |
||||||
|
UPB_UNUSED(argc); |
||||||
|
UPB_UNUSED(argv); |
||||||
|
test_pb_roundtrip(); |
||||||
|
return 0; |
||||||
|
} |
||||||
|
} |
Binary file not shown.
Loading…
Reference in new issue