OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/test/testsupport/frame_writer.h" | 11 #include "webrtc/test/testsupport/frame_writer.h" |
12 | 12 |
13 #include "webrtc/test/gtest.h" | 13 #include "webrtc/test/gtest.h" |
14 #include "webrtc/test/testsupport/fileutils.h" | 14 #include "webrtc/test/testsupport/fileutils.h" |
15 | 15 |
16 namespace webrtc { | 16 namespace webrtc { |
17 namespace test { | 17 namespace test { |
18 | 18 |
19 const size_t kFrameLength = 1000; | 19 const size_t kFrameWidth = 50; |
20 const size_t kFrameHeight = 20; | |
21 const size_t kFrameLength = 3 * kFrameWidth * kFrameHeight / 2; // I420. | |
20 | 22 |
21 class FrameWriterTest: public testing::Test { | 23 class FrameWriterTest: public testing::Test { |
22 protected: | 24 protected: |
23 FrameWriterTest() {} | 25 FrameWriterTest() {} |
24 virtual ~FrameWriterTest() {} | 26 virtual ~FrameWriterTest() {} |
25 void SetUp() { | 27 void SetUp() { |
26 temp_filename_ = webrtc::test::TempFilename(webrtc::test::OutputPath(), | 28 temp_filename_ = webrtc::test::TempFilename(webrtc::test::OutputPath(), |
27 "frame_writer_unittest"); | 29 "frame_writer_unittest"); |
28 frame_writer_ = new FrameWriterImpl(temp_filename_, kFrameLength); | 30 frame_writer_ = |
31 new YuvFrameWriterImpl(temp_filename_, kFrameWidth, kFrameHeight); | |
29 ASSERT_TRUE(frame_writer_->Init()); | 32 ASSERT_TRUE(frame_writer_->Init()); |
30 } | 33 } |
31 void TearDown() { | 34 void TearDown() { |
32 delete frame_writer_; | 35 delete frame_writer_; |
33 // Cleanup the temporary file. | 36 // Cleanup the temporary file. |
34 remove(temp_filename_.c_str()); | 37 remove(temp_filename_.c_str()); |
35 } | 38 } |
36 FrameWriter* frame_writer_; | 39 FrameWriter* frame_writer_; |
37 std::string temp_filename_; | 40 std::string temp_filename_; |
38 }; | 41 }; |
39 | 42 |
40 TEST_F(FrameWriterTest, InitSuccess) { | 43 TEST_F(FrameWriterTest, InitSuccess) { |
41 FrameWriterImpl frame_writer(temp_filename_, kFrameLength); | 44 YuvFrameWriterImpl frame_writer(temp_filename_, kFrameWidth, kFrameHeight); |
42 ASSERT_TRUE(frame_writer.Init()); | 45 ASSERT_TRUE(frame_writer.Init()); |
43 ASSERT_EQ(kFrameLength, frame_writer.FrameLength()); | 46 ASSERT_EQ(kFrameLength, frame_writer.FrameLength()); |
44 } | 47 } |
45 | 48 |
46 TEST_F(FrameWriterTest, WriteFrame) { | 49 TEST_F(FrameWriterTest, WriteFrame) { |
47 uint8_t buffer[kFrameLength]; | 50 uint8_t buffer[kFrameLength]; |
48 memset(buffer, 9, kFrameLength); // Write lots of 9s to the buffer | 51 memset(buffer, 9, kFrameLength); // Write lots of 9s to the buffer. |
49 bool result = frame_writer_->WriteFrame(buffer); | 52 bool result = frame_writer_->WriteFrame(buffer); |
50 ASSERT_TRUE(result); // success | 53 ASSERT_TRUE(result); |
51 // Close the file and verify the size. | 54 // Close the file and verify the size. |
52 frame_writer_->Close(); | 55 frame_writer_->Close(); |
53 ASSERT_EQ(kFrameLength, GetFileSize(temp_filename_)); | 56 ASSERT_EQ(kFrameLength, GetFileSize(temp_filename_)); |
54 } | 57 } |
55 | 58 |
56 TEST_F(FrameWriterTest, WriteFrameUninitialized) { | 59 TEST_F(FrameWriterTest, WriteFrameUninitialized) { |
57 uint8_t buffer[3]; | 60 uint8_t buffer[3]; |
58 FrameWriterImpl frame_writer(temp_filename_, kFrameLength); | 61 YuvFrameWriterImpl frame_writer(temp_filename_, kFrameWidth, kFrameHeight); |
59 ASSERT_FALSE(frame_writer.WriteFrame(buffer)); | 62 ASSERT_FALSE(frame_writer.WriteFrame(buffer)); |
60 } | 63 } |
61 | 64 |
kjellander_webrtc
2017/02/19 09:02:37
Please add unit tests for Y4mFrameWriterImpl as we
brandtr
2017/02/20 13:17:31
Done.
| |
62 } // namespace test | 65 } // namespace test |
63 } // namespace webrtc | 66 } // namespace webrtc |
OLD | NEW |