blob: ec383a1e3f6cf513f9a462006cc7367f6a1f2153 [file] [log] [blame] [edit]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/performance/trace2json/trace_parser.h"
#include <sstream>
#include <gtest/gtest.h>
namespace {
TEST(TraceParserTest, InvalidTrace) {
std::istringstream input("asdfasdfasdfasdfasdf");
std::ostringstream output;
tracing::FuchsiaTraceParser parser(&output);
EXPECT_FALSE(parser.ParseComplete(&input));
}
// This is a regression test for https://fxbug.dev/123479. Check that
// EOF is handled properly.
//
// The actual bug occurred on a large trace file where an
// std::istream::read() call read exactly up to the end of the file,
// but we can reproduce the same problem with a zero-size file.
TEST(TraceParserTest, EndOfFile) {
std::istringstream input("");
std::ostringstream output;
tracing::FuchsiaTraceParser parser(&output);
EXPECT_TRUE(parser.ParseComplete(&input));
}
} // namespace