aboutsummaryrefslogtreecommitdiff
path: root/src/utils/test/TestBase64.cpp
blob: 0ae643159b604797b17314c342f44205969e64b0 (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
/*
 *      Copyright (C) 2005-2013 Team XBMC
 *      http://xbmc.org
 *
 *  This Program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2, or (at your option)
 *  any later version.
 *
 *  This Program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with XBMC; see the file COPYING.  If not, see
 *  <http://www.gnu.org/licenses/>.
 *
 */

#include "utils/Base64.h"

#include "gtest/gtest.h"

static const char refdata[] = "\x01\x02\x03\x04\x05\x06\x07\x08"
                              "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
                              "\x11\x12\x13\x14\x15\x16\x17\x18"
                              "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
                              "\x21\x22\x23\x24\x25\x26\x27\x28"
                              "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30";

static const char refbase64data[] = "AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY"
                                    "GRobHB0eHyAhIiMkJSYnKCkqKywtLi8w";

TEST(TestBase64, Encode_1)
{
  std::string a;
  Base64::Encode(refdata, sizeof(refdata) - 1, a);
  EXPECT_STREQ(refbase64data, a.c_str());
}

TEST(TestBase64, Encode_2)
{
  std::string a;
  a = Base64::Encode(refdata, sizeof(refdata) - 1);
  EXPECT_STREQ(refbase64data, a.c_str());
}

TEST(TestBase64, Encode_3)
{
  std::string a;
  Base64::Encode(refdata, a);
  EXPECT_STREQ(refbase64data, a.c_str());
}

TEST(TestBase64, Encode_4)
{
  std::string a;
  a = Base64::Encode(refdata);
  EXPECT_STREQ(refbase64data, a.c_str());
}

TEST(TestBase64, Decode_1)
{
  std::string a;
  Base64::Decode(refbase64data, sizeof(refbase64data) - 1, a);
  EXPECT_STREQ(refdata, a.c_str());
}

TEST(TestBase64, Decode_2)
{
  std::string a;
  a = Base64::Decode(refbase64data, sizeof(refbase64data) - 1);
  EXPECT_STREQ(refdata, a.c_str());
}

TEST(TestBase64, Decode_3)
{
  std::string a;
  Base64::Decode(refbase64data, a);
  EXPECT_STREQ(refdata, a.c_str());
}

TEST(TestBase64, Decode_4)
{
  std::string a;
  a = Base64::Decode(refbase64data);
  EXPECT_STREQ(refdata, a.c_str());
}