28 const char *paths[] = {
30 "bin/data/sample.json",
31 "../bin/data/sample.json",
32 "../../bin/data/sample.json",
33 "../../../bin/data/sample.json" 36 for (
size_t i = 0; i <
sizeof(paths) /
sizeof(paths[0]); i++) {
37 fp = fopen(paths[i],
"rb");
45 fseek(fp, 0, SEEK_END);
46 length_ =
static_cast<size_t>(ftell(fp));
47 fseek(fp, 0, SEEK_SET);
48 json_ =
static_cast<char*
>(malloc(length_ + 1));
49 size_t readLength = fread(json_, 1, length_, fp);
50 json_[readLength] =
'\0';
72 FILE *fp = fopen(filename_,
"rb");
77 for (
size_t i = 0; i < length_; i++) {
90 char filename[L_tmpnam];
95 for (
size_t i = 0; i < length_; i++)
101 fp = fopen(filename,
"rb");
104 for (
size_t i = 0; i < length_; i++)
FILE * TempFile(char *filename)
File byte stream for input using fread().
virtual ~FileStreamTest()
#define ASSERT_TRUE(condition)
connection< TProtocol > & operator=(const connection< TProtocol > &obj)
TEST_F(FileStreamTest, FileReadStream)
Wrapper of C file stream for output using fwrite().
#define EXPECT_EQ(val1, val2)