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
|
/**
* @file PercentEncodedCharacterDecoderTests.cpp
*
* This module contains the unit tests of the Uri::PercentEncodedCharacterDecoder class.
*
* © 2018 by Richard Walters
*/
#include <gtest/gtest.h>
#include <src/PercentEncodedCharacterDecoder.hpp>
#include <stddef.h>
#include <vector>
TEST(PercentEncodedCharacterDecoderTests, GoodSequences) {
Uri::PercentEncodedCharacterDecoder pec;
struct TestVector {
char sequence[2];
char expectedOutput;
};
const std::vector< TestVector > testVectors{
{{'4', '1'}, 'A'},
{{'5', 'A'}, 'Z'},
{{'6', 'e'}, 'n'},
};
size_t index = 0;
for (auto testVector: testVectors) {
pec = Uri::PercentEncodedCharacterDecoder();
ASSERT_FALSE(pec.Done());
ASSERT_TRUE(pec.NextEncodedCharacter(testVector.sequence[0]));
ASSERT_FALSE(pec.Done());
ASSERT_TRUE(pec.NextEncodedCharacter(testVector.sequence[1]));
ASSERT_TRUE(pec.Done());
ASSERT_EQ(testVector.expectedOutput, pec.GetDecodedCharacter()) << index;
++index;
}
}
TEST(PercentEncodedCharacterDecoderTests, BadSequences) {
Uri::PercentEncodedCharacterDecoder pec;
std::vector< char > testVectors{
'G', 'g', '.', 'z', '-', ' ', 'V',
};
for (auto testVector: testVectors) {
pec = Uri::PercentEncodedCharacterDecoder();
ASSERT_FALSE(pec.Done());
ASSERT_FALSE(pec.NextEncodedCharacter(testVector));
}
}
|