blob: ac0fb8cfbe73b1dfa7399624c52a816dc12677ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBKIT_TOOLS_TEST_SHELL_IMAGE_DECODER_UNITTEST_H_
#define WEBKIT_TOOLS_TEST_SHELL_IMAGE_DECODER_UNITTEST_H_
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "base/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace WebKit { class WebImageDecoder; }
// If CALCULATE_MD5_SUMS is not defined, then this test decodes a handful of
// image files and compares their MD5 sums to the stored sums on disk.
//
// To recalculate the MD5 sums, uncommment CALCULATE_MD5_SUMS.
//
// The image files and corresponding MD5 sums live in the directory
// chrome/test/data/*_decoder (where "*" is the format being tested).
//
// Note: The MD5 sums calculated in this test by little- and big-endian systems
// will differ, since no endianness correction is done. If we start compiling
// for big endian machines this should be fixed.
// #define CALCULATE_MD5_SUMS
enum ImageDecoderTestFileSelection {
TEST_ALL,
TEST_SMALLER,
TEST_BIGGER,
};
// Returns the path the decoded data is saved at.
FilePath GetMD5SumPath(const FilePath& path);
class ImageDecoderTest : public testing::Test {
public:
explicit ImageDecoderTest(const std::string& format) : format_(format) { }
protected:
virtual void SetUp();
// Returns the vector of image files for testing.
std::vector<FilePath> GetImageFiles() const;
// Returns true if the image is bogus and should not be successfully decoded.
bool ShouldImageFail(const FilePath& path) const;
// Tests if decoder decodes image at image_path with underlying frame at
// index desired_frame_index. The md5_sum_path is needed if the test is not
// asked to generate one i.e. if # #define CALCULATE_MD5_SUMS is set.
void TestWebKitImageDecoder(const FilePath& image_path,
const FilePath& md5_sum_path, int desired_frame_index) const;
// Verifies each of the test image files is decoded correctly and matches the
// expected state. |file_selection| and |threshold| can be used to select
// files to test based on file size.
// If just the MD5 sum is wanted, this skips chunking.
void TestDecoding(ImageDecoderTestFileSelection file_selection,
const int64 threshold);
void TestDecoding() {
TestDecoding(TEST_ALL, 0);
}
// Creates WebKit API's decoder.
virtual WebKit::WebImageDecoder* CreateWebKitImageDecoder() const = 0;
// The format to be decoded, like "bmp" or "ico".
std::string format_;
protected:
// Path to the test files.
FilePath data_dir_;
private:
DISALLOW_COPY_AND_ASSIGN(ImageDecoderTest);
};
#endif // WEBKIT_TOOLS_TEST_SHELL_IMAGE_DECODER_UNITTEST_H_
|