blob: 84c76f2c6cc5eee555050bf49eff73b90461d3dc [file] [log] [blame]
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Brian Carlstromcd60ac72013-01-20 17:09:51 -080017#include "file_output_stream.h"
18#include "vector_output_stream.h"
19
Ian Rogerse63db272014-07-15 15:36:11 -070020#include "base/unix_file/fd_file.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080021#include "base/logging.h"
Vladimir Marko10c13562015-11-25 14:33:36 +000022#include "base/stl_util.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080023#include "buffered_output_stream.h"
24#include "common_runtime_test.h"
25
Brian Carlstromcd60ac72013-01-20 17:09:51 -080026namespace art {
27
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080028class OutputStreamTest : public CommonRuntimeTest {
Brian Carlstromcd60ac72013-01-20 17:09:51 -080029 protected:
30 void CheckOffset(off_t expected) {
Brian Carlstrom49a0f152013-01-22 17:17:36 -080031 off_t actual = output_stream_->Seek(0, kSeekCurrent);
Ian Rogers8d3a1172013-06-04 01:13:28 -070032 EXPECT_EQ(expected, actual);
Brian Carlstromcd60ac72013-01-20 17:09:51 -080033 }
34
35 void SetOutputStream(OutputStream& output_stream) {
36 output_stream_ = &output_stream;
37 }
38
39 void GenerateTestOutput() {
Ian Rogers8d3a1172013-06-04 01:13:28 -070040 EXPECT_EQ(3, output_stream_->Seek(3, kSeekCurrent));
Brian Carlstromcd60ac72013-01-20 17:09:51 -080041 CheckOffset(3);
Ian Rogers8d3a1172013-06-04 01:13:28 -070042 EXPECT_EQ(2, output_stream_->Seek(2, kSeekSet));
Brian Carlstromcd60ac72013-01-20 17:09:51 -080043 CheckOffset(2);
44 uint8_t buf[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
Ian Rogers8d3a1172013-06-04 01:13:28 -070045 EXPECT_TRUE(output_stream_->WriteFully(buf, 2));
Brian Carlstromcd60ac72013-01-20 17:09:51 -080046 CheckOffset(4);
Ian Rogers8d3a1172013-06-04 01:13:28 -070047 EXPECT_EQ(6, output_stream_->Seek(2, kSeekEnd));
Brian Carlstromcd60ac72013-01-20 17:09:51 -080048 CheckOffset(6);
Ian Rogers8d3a1172013-06-04 01:13:28 -070049 EXPECT_TRUE(output_stream_->WriteFully(buf, 4));
Brian Carlstromcd60ac72013-01-20 17:09:51 -080050 CheckOffset(10);
Zheng Xu98088c42015-06-19 14:12:45 +080051 EXPECT_TRUE(output_stream_->WriteFully(buf, 6));
Vladimir Marko10c13562015-11-25 14:33:36 +000052 EXPECT_TRUE(output_stream_->Flush());
Brian Carlstromcd60ac72013-01-20 17:09:51 -080053 }
54
55 void CheckTestOutput(const std::vector<uint8_t>& actual) {
56 uint8_t expected[] = {
Zheng Xu98088c42015-06-19 14:12:45 +080057 0, 0, 1, 2, 0, 0, 1, 2, 3, 4, 1, 2, 3, 4, 5, 6
Brian Carlstromcd60ac72013-01-20 17:09:51 -080058 };
Ian Rogers8d3a1172013-06-04 01:13:28 -070059 EXPECT_EQ(sizeof(expected), actual.size());
60 EXPECT_EQ(0, memcmp(expected, &actual[0], actual.size()));
Brian Carlstromcd60ac72013-01-20 17:09:51 -080061 }
62
63 OutputStream* output_stream_;
64};
65
66TEST_F(OutputStreamTest, File) {
67 ScratchFile tmp;
68 FileOutputStream output_stream(tmp.GetFile());
69 SetOutputStream(output_stream);
70 GenerateTestOutput();
Ian Rogers700a4022014-05-19 16:49:03 -070071 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
Mathieu Chartier2cebb242015-04-21 16:50:40 -070072 EXPECT_TRUE(in.get() != nullptr);
Brian Carlstromcd60ac72013-01-20 17:09:51 -080073 std::vector<uint8_t> actual(in->GetLength());
74 bool readSuccess = in->ReadFully(&actual[0], actual.size());
Ian Rogers8d3a1172013-06-04 01:13:28 -070075 EXPECT_TRUE(readSuccess);
Brian Carlstromcd60ac72013-01-20 17:09:51 -080076 CheckTestOutput(actual);
77}
78
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070079TEST_F(OutputStreamTest, Buffered) {
80 ScratchFile tmp;
Zheng Xu98088c42015-06-19 14:12:45 +080081 {
Vladimir Marko10c13562015-11-25 14:33:36 +000082 BufferedOutputStream buffered_output_stream(MakeUnique<FileOutputStream>(tmp.GetFile()));
Zheng Xu98088c42015-06-19 14:12:45 +080083 SetOutputStream(buffered_output_stream);
84 GenerateTestOutput();
85 }
Ian Rogers700a4022014-05-19 16:49:03 -070086 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
Mathieu Chartier2cebb242015-04-21 16:50:40 -070087 EXPECT_TRUE(in.get() != nullptr);
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070088 std::vector<uint8_t> actual(in->GetLength());
89 bool readSuccess = in->ReadFully(&actual[0], actual.size());
90 EXPECT_TRUE(readSuccess);
91 CheckTestOutput(actual);
92}
93
Brian Carlstromcd60ac72013-01-20 17:09:51 -080094TEST_F(OutputStreamTest, Vector) {
95 std::vector<uint8_t> output;
Ian Rogers0279ebb2014-10-08 17:27:48 -070096 VectorOutputStream output_stream("test vector output", &output);
Brian Carlstromcd60ac72013-01-20 17:09:51 -080097 SetOutputStream(output_stream);
98 GenerateTestOutput();
99 CheckTestOutput(output);
100}
101
Vladimir Marko10c13562015-11-25 14:33:36 +0000102TEST_F(OutputStreamTest, BufferedFlush) {
103 struct CheckingOutputStream : OutputStream {
104 CheckingOutputStream()
105 : OutputStream("dummy"),
106 flush_called(false) { }
107 ~CheckingOutputStream() OVERRIDE {}
108
109 bool WriteFully(const void* buffer ATTRIBUTE_UNUSED,
110 size_t byte_count ATTRIBUTE_UNUSED) OVERRIDE {
111 LOG(FATAL) << "UNREACHABLE";
112 UNREACHABLE();
113 }
114
115 off_t Seek(off_t offset ATTRIBUTE_UNUSED, Whence whence ATTRIBUTE_UNUSED) OVERRIDE {
116 LOG(FATAL) << "UNREACHABLE";
117 UNREACHABLE();
118 }
119
120 bool Flush() OVERRIDE {
121 flush_called = true;
122 return true;
123 }
124
125 bool flush_called;
126 };
127
128 std::unique_ptr<CheckingOutputStream> cos = MakeUnique<CheckingOutputStream>();
129 CheckingOutputStream* checking_output_stream = cos.get();
130 BufferedOutputStream buffered(std::move(cos));
131 ASSERT_FALSE(checking_output_stream->flush_called);
132 bool flush_result = buffered.Flush();
133 ASSERT_TRUE(flush_result);
134 ASSERT_TRUE(checking_output_stream->flush_called);
135}
136
Mathieu Chartier02e25112013-08-14 16:14:24 -0700137} // namespace art