aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SerializationTest.cpp
blob: d2c692526f62bf3a673aba38568f2a19a7b6f95a (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
 * Copyright 2013 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkOrderedWriteBuffer.h"
#include "SkValidatingReadBuffer.h"
#include "Test.h"

static void Tests(skiatest::Reporter* reporter) {
    {
        static const uint32_t arraySize = 512;
        unsigned char data[arraySize] = {0};
        SkOrderedWriteBuffer writer(1024);
        writer.setFlags(SkOrderedWriteBuffer::kValidation_Flag);
        writer.writeByteArray(data, arraySize);
        uint32_t bytesWritten = writer.bytesWritten();
        // This should write the length (in 4 bytes) and the array
        REPORTER_ASSERT(reporter, (4 + arraySize) == bytesWritten);

        unsigned char dataWritten[1024];
        writer.writeToMemory(dataWritten);

        // Make sure this fails when it should
        SkValidatingReadBuffer buffer(dataWritten, bytesWritten);
        unsigned char dataRead[arraySize];
        bool success = buffer.readByteArray(dataRead, 256);
        // This should have failed, since 256 < sizeInBytes
        REPORTER_ASSERT(reporter, !success);

        // Make sure this succeeds when it should
        SkValidatingReadBuffer buffer2(dataWritten, bytesWritten);
        success = buffer2.readByteArray(dataRead, arraySize);
        // This should have succeeded, since there are enough bytes to read this
        REPORTER_ASSERT(reporter, success);
    }

    {
        static const uint32_t arraySize = 64;
        SkColor data[arraySize];
        SkOrderedWriteBuffer writer(1024);
        writer.setFlags(SkOrderedWriteBuffer::kValidation_Flag);
        writer.writeColorArray(data, arraySize);
        uint32_t bytesWritten = writer.bytesWritten();
        // This should write the length (in 4 bytes) and the array
        REPORTER_ASSERT(reporter, (4 + arraySize * sizeof(SkColor)) == bytesWritten);

        unsigned char dataWritten[1024];
        writer.writeToMemory(dataWritten);

        // Make sure this fails when it should
        SkValidatingReadBuffer buffer(dataWritten, bytesWritten);
        SkColor dataRead[arraySize];
        bool success = buffer.readColorArray(dataRead, 32);
        // This should have failed, since 256 < sizeInBytes
        REPORTER_ASSERT(reporter, !success);

        // Make sure this succeeds when it should
        SkValidatingReadBuffer buffer2(dataWritten, bytesWritten);
        success = buffer2.readColorArray(dataRead, arraySize);
        // This should have succeeded, since there are enough bytes to read this
        REPORTER_ASSERT(reporter, success);
    }

    {
        static const uint32_t arraySize = 64;
        int32_t data[arraySize];
        SkOrderedWriteBuffer writer(1024);
        writer.setFlags(SkOrderedWriteBuffer::kValidation_Flag);
        writer.writeIntArray(data, arraySize);
        uint32_t bytesWritten = writer.bytesWritten();
        // This should write the length (in 4 bytes) and the array
        REPORTER_ASSERT(reporter, (4 + arraySize * sizeof(int32_t)) == bytesWritten);

        unsigned char dataWritten[1024];
        writer.writeToMemory(dataWritten);

        // Make sure this fails when it should
        SkValidatingReadBuffer buffer(dataWritten, bytesWritten);
        int32_t dataRead[arraySize];
        bool success = buffer.readIntArray(dataRead, 32);
        // This should have failed, since 256 < sizeInBytes
        REPORTER_ASSERT(reporter, !success);

        // Make sure this succeeds when it should
        SkValidatingReadBuffer buffer2(dataWritten, bytesWritten);
        success = buffer2.readIntArray(dataRead, arraySize);
        // This should have succeeded, since there are enough bytes to read this
        REPORTER_ASSERT(reporter, success);
    }

    {
        static const uint32_t arraySize = 64;
        SkPoint data[arraySize];
        SkOrderedWriteBuffer writer(1024);
        writer.setFlags(SkOrderedWriteBuffer::kValidation_Flag);
        writer.writePointArray(data, arraySize);
        uint32_t bytesWritten = writer.bytesWritten();
        // This should write the length (in 4 bytes) and the array
        REPORTER_ASSERT(reporter, (4 + arraySize * sizeof(SkPoint)) == bytesWritten);

        unsigned char dataWritten[1024];
        writer.writeToMemory(dataWritten);

        // Make sure this fails when it should
        SkValidatingReadBuffer buffer(dataWritten, bytesWritten);
        SkPoint dataRead[arraySize];
        bool success = buffer.readPointArray(dataRead, 32);
        // This should have failed, since 256 < sizeInBytes
        REPORTER_ASSERT(reporter, !success);

        // Make sure this succeeds when it should
        SkValidatingReadBuffer buffer2(dataWritten, bytesWritten);
        success = buffer2.readPointArray(dataRead, arraySize);
        // This should have succeeded, since there are enough bytes to read this
        REPORTER_ASSERT(reporter, success);
    }

    {
        static const uint32_t arraySize = 64;
        SkScalar data[arraySize];
        SkOrderedWriteBuffer writer(1024);
        writer.setFlags(SkOrderedWriteBuffer::kValidation_Flag);
        writer.writeScalarArray(data, arraySize);
        uint32_t bytesWritten = writer.bytesWritten();
        // This should write the length (in 4 bytes) and the array
        REPORTER_ASSERT(reporter, (4 + arraySize * sizeof(SkScalar)) == bytesWritten);

        unsigned char dataWritten[1024];
        writer.writeToMemory(dataWritten);

        // Make sure this fails when it should
        SkValidatingReadBuffer buffer(dataWritten, bytesWritten);
        SkScalar dataRead[arraySize];
        bool success = buffer.readScalarArray(dataRead, 32);
        // This should have failed, since 256 < sizeInBytes
        REPORTER_ASSERT(reporter, !success);

        // Make sure this succeeds when it should
        SkValidatingReadBuffer buffer2(dataWritten, bytesWritten);
        success = buffer2.readScalarArray(dataRead, arraySize);
        // This should have succeeded, since there are enough bytes to read this
        REPORTER_ASSERT(reporter, success);
    }
}

#include "TestClassDef.h"
DEFINE_TESTCLASS("Serialization", SerializationClass, Tests)