-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbyte_to_hex.cpp
More file actions
45 lines (36 loc) · 1.17 KB
/
byte_to_hex.cpp
File metadata and controls
45 lines (36 loc) · 1.17 KB
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
#include <iostream>
#include <algorithm>
#include <utility>
#include <vector>
#include <sstream>
#include <ByteConvert/ByteConvert.hpp>
int main()
{
std::cout << "Testing byte_to_hex function" << std::endl;
// Generate all posible values for 1 byte
std::cout << "Generating all posibilities" << std::endl;
std::vector<std::pair<uint8_t, std::string>> test_values;
test_values.reserve(256);
std::stringstream ss("");
for (uint8_t i = 0; i <= 0xff; i++) {
ss << std::hex << unsigned(i);
test_values.push_back(std::make_pair(i,(ss.str().size()==2)? ss.str() : "0" + ss.str()));
ss.str("");
if (i == 0xff)
break;
}
// Test function
std::cout << "Testing" << std::endl;
std::string value("");
for (uint8_t i = 0; i <= 0xff; i++) {
value = ByteConvert::byte_to_hex(test_values[(int)i].first);
if (value != test_values[(int)i].second) {
std::cout << "Expected: " << test_values[(int)i].second << " Got: " << value << std::endl;
return -1;
}
if (i == 0xff)
break;
}
std::cout << "Done" << std::endl;
return 0;
}