summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-08-16 00:47:42 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-08-21 21:47:17 +0300
commit7615f58f9b7ee6cd1a858a86e53668406e9efa11 (patch)
tree6442be27dc88e9378f341915dd1aaf32620cb888 /test
parent629e65b15b8e659502a2d21e3097af5e342a4a1f (diff)
test: yaml-parser: Test out-of-range checks on integer parsing
Add 16-bit integer parsing tests, including a test to verify the out-of-range checks when parsing 32-bit integers as 16-bit values. That test currently fails. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'test')
-rw-r--r--test/yaml-parser.cpp77
1 files changed, 68 insertions, 9 deletions
diff --git a/test/yaml-parser.cpp b/test/yaml-parser.cpp
index 803e70be..28f8cc88 100644
--- a/test/yaml-parser.cpp
+++ b/test/yaml-parser.cpp
@@ -24,8 +24,10 @@ using namespace std;
static const string testYaml =
"string: libcamera\n"
"double: 3.14159\n"
- "uint32_t: 100\n"
- "int32_t: -100\n"
+ "int16_t: -1000\n"
+ "uint16_t: 1000\n"
+ "int32_t: -100000\n"
+ "uint32_t: 100000\n"
"size: [1920, 1080]\n"
"list:\n"
" - James\n"
@@ -74,6 +76,8 @@ protected:
enum class Type {
String,
+ Int16,
+ UInt16,
Int32,
UInt32,
Double,
@@ -86,8 +90,10 @@ protected:
{
bool isList = type == Type::List || type == Type::Size;
bool isScalar = !isList && type != Type::Dictionary;
- bool isInteger = type == Type::Int32 || type == Type::UInt32;
- bool isSigned = type == Type::Int32;
+ bool isInteger16 = type == Type::Int16 || type == Type::UInt16;
+ bool isInteger32 = type == Type::Int32 || type == Type::UInt32;
+ bool isInteger = isInteger16 || isInteger32;
+ bool isSigned = type == Type::Int16 || type == Type::Int32;
if ((isScalar && !obj.isValue()) || (!isScalar && obj.isValue())) {
std::cerr
@@ -118,6 +124,20 @@ protected:
return TestFail;
}
+ if (!isInteger16 && obj.get<int16_t>()) {
+ std::cerr
+ << "Object " << name << " didn't fail to parse as "
+ << "int16_t" << std::endl;
+ return TestFail;
+ }
+
+ if ((!isInteger16 || isSigned) && obj.get<uint16_t>()) {
+ std::cerr
+ << "Object " << name << " didn't fail to parse as "
+ << "uint16_t" << std::endl;
+ return TestFail;
+ }
+
if (!isInteger && obj.get<int32_t>()) {
std::cerr
<< "Object " << name << " didn't fail to parse as "
@@ -154,7 +174,8 @@ protected:
{
uint64_t unsignedValue = static_cast<uint64_t>(value);
std::string strValue = std::to_string(value);
- bool isSigned = type == Type::Int32;
+ bool isInteger16 = type == Type::Int16 || type == Type::UInt16;
+ bool isSigned = type == Type::Int16 || type == Type::Int32;
/* All integers can be parsed as strings or double. */
@@ -174,6 +195,26 @@ protected:
return TestFail;
}
+ if (isInteger16) {
+ if (obj.get<int16_t>().value_or(0) != value ||
+ obj.get<int16_t>(0) != value) {
+ std::cerr
+ << "Object " << name << " failed to parse as "
+ << "int16_t" << std::endl;
+ return TestFail;
+ }
+ }
+
+ if (isInteger16 && !isSigned) {
+ if (obj.get<uint16_t>().value_or(0) != unsignedValue ||
+ obj.get<uint16_t>(0) != unsignedValue) {
+ std::cerr
+ << "Object " << name << " failed to parse as "
+ << "uint16_t" << std::endl;
+ return TestFail;
+ }
+ }
+
if (obj.get<int32_t>().value_or(0) != value ||
obj.get<int32_t>(0) != value) {
std::cerr
@@ -231,8 +272,8 @@ protected:
}
std::vector<const char *> rootElemNames = {
- "string", "double", "int32_t", "uint32_t", "size",
- "list", "dictionary", "level1",
+ "string", "double", "int16_t", "uint16_t", "int32_t",
+ "uint32_t", "size", "list", "dictionary", "level1",
};
for (const char *name : rootElemNames) {
@@ -255,13 +296,31 @@ protected:
return TestFail;
}
+ /* Test int16_t object */
+ auto &int16Obj = (*root)["int16_t"];
+
+ if (testObjectType(int16Obj, "int16_t", Type::Int16) != TestPass)
+ return TestFail;
+
+ if (testIntegerObject(int16Obj, "int16_t", Type::Int16, -1000) != TestPass)
+ return TestFail;
+
+ /* Test uint16_t object */
+ auto &uint16Obj = (*root)["uint16_t"];
+
+ if (testObjectType(uint16Obj, "uint16_t", Type::UInt16) != TestPass)
+ return TestFail;
+
+ if (testIntegerObject(uint16Obj, "uint16_t", Type::UInt16, 1000) != TestPass)
+ return TestFail;
+
/* Test int32_t object */
auto &int32Obj = (*root)["int32_t"];
if (testObjectType(int32Obj, "int32_t", Type::Int32) != TestPass)
return TestFail;
- if (testIntegerObject(int32Obj, "int32_t", Type::Int32, -100) != TestPass)
+ if (testIntegerObject(int32Obj, "int32_t", Type::Int32, -100000) != TestPass)
return TestFail;
/* Test uint32_t object */
@@ -270,7 +329,7 @@ protected:
if (testObjectType(uint32Obj, "uint32_t", Type::UInt32) != TestPass)
return TestFail;
- if (testIntegerObject(uint32Obj, "uint32_t", Type::UInt32, 100) != TestPass)
+ if (testIntegerObject(uint32Obj, "uint32_t", Type::UInt32, 100000) != TestPass)
return TestFail;
/* Test double value */