Improved XMP value toLong, toFloat and toRational using new functions parseLong, parseFloat and parseRational. (Vladimir Nadvornik)
parent
d8e6b51c69
commit
e878166f0d
@ -0,0 +1,77 @@
|
|||||||
|
// ***************************************************************** -*- C++ -*-
|
||||||
|
// stringto-test.cpp, $Rev$
|
||||||
|
// Test conversions from string to long, float and Rational types.
|
||||||
|
|
||||||
|
#include <exiv2/types.hpp>
|
||||||
|
#include <exiv2/error.hpp>
|
||||||
|
#include <iostream>
|
||||||
|
#include <iomanip>
|
||||||
|
|
||||||
|
const char* testcases[] = {
|
||||||
|
// bool
|
||||||
|
"True",
|
||||||
|
"False",
|
||||||
|
"t",
|
||||||
|
"f",
|
||||||
|
// long
|
||||||
|
"-1",
|
||||||
|
"0",
|
||||||
|
"1",
|
||||||
|
// float
|
||||||
|
"0.0",
|
||||||
|
"0.1",
|
||||||
|
"0.01",
|
||||||
|
"0.001",
|
||||||
|
"-1.49999",
|
||||||
|
"-1.5",
|
||||||
|
"1.49999",
|
||||||
|
"1.5",
|
||||||
|
// Rational
|
||||||
|
"0/1",
|
||||||
|
"1/1",
|
||||||
|
"1/3",
|
||||||
|
"-1/3",
|
||||||
|
"4/3",
|
||||||
|
"-4/3",
|
||||||
|
"0/0",
|
||||||
|
// nok
|
||||||
|
"text"
|
||||||
|
};
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::cout << std::setfill(' ');
|
||||||
|
|
||||||
|
std::cout << std::setw(12) << std::left << "string";
|
||||||
|
std::cout << std::setw(12) << std::left << "long";
|
||||||
|
std::cout << std::setw(12) << std::left << "float";
|
||||||
|
std::cout << std::setw(12) << std::left << "Rational";
|
||||||
|
|
||||||
|
std::cout << std::endl;
|
||||||
|
|
||||||
|
for (unsigned int i = 0; i < EXV_COUNTOF(testcases); ++i) try {
|
||||||
|
std::string s(testcases[i]);
|
||||||
|
std::cout << std::setw(12) << std::left << s;
|
||||||
|
bool ok;
|
||||||
|
|
||||||
|
long l = Exiv2::parseLong(s, ok);
|
||||||
|
std::cout << std::setw(12) << std::left;
|
||||||
|
if (ok) std::cout << l; else std::cout << "nok";
|
||||||
|
|
||||||
|
float f = Exiv2::parseFloat(s, ok);
|
||||||
|
std::cout << std::setw(12) << std::left;
|
||||||
|
if (ok) std::cout << f; else std::cout << "nok";
|
||||||
|
|
||||||
|
Exiv2::Rational r = Exiv2::parseRational(s, ok);
|
||||||
|
if (ok) std::cout << r.first << "/" << r.second;
|
||||||
|
else std::cout << "nok";
|
||||||
|
|
||||||
|
std::cout << std::endl;
|
||||||
|
}
|
||||||
|
catch (Exiv2::AnyError& e) {
|
||||||
|
std::cout << "Caught Exiv2 exception '" << e << "'\n";
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
string long float Rational
|
||||||
|
True 1 1 1/1
|
||||||
|
False 0 0 0/1
|
||||||
|
t 1 1 1/1
|
||||||
|
f 0 0 0/1
|
||||||
|
-1 -1 -1 -1/1
|
||||||
|
0 0 0 0/1
|
||||||
|
1 1 1 1/1
|
||||||
|
0.0 0 0 0/1
|
||||||
|
0.1 0 0.1 1/10
|
||||||
|
0.01 0 0.01 1/100
|
||||||
|
0.001 0 0.001 1/1000
|
||||||
|
-1.49999 -1 -1.49999 -149999/100000
|
||||||
|
-1.5 -1 -1.5 -3/2
|
||||||
|
1.49999 1 1.49999 149999/100000
|
||||||
|
1.5 1 1.5 3/2
|
||||||
|
0/1 0 0 0/1
|
||||||
|
1/1 1 1 1/1
|
||||||
|
1/3 0 0.333333 1/3
|
||||||
|
-1/3 0 -0.333333 -1/3
|
||||||
|
4/3 1 1.33333 4/3
|
||||||
|
-4/3 -1 -1.33333 -4/3
|
||||||
|
0/0 nok nok 0/0
|
||||||
|
text nok nok nok
|
@ -0,0 +1,24 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# Test driver for tests of stringToLong/Float/Rational
|
||||||
|
results="./tmp/stringto-test.out"
|
||||||
|
good="./data/stringto-test.out"
|
||||||
|
diffargs="--strip-trailing-cr"
|
||||||
|
tmpfile=tmp/ttt
|
||||||
|
touch $tmpfile
|
||||||
|
diff -q $diffargs $tmpfile $tmpfile 2>/dev/null
|
||||||
|
if [ $? -ne 0 ] ; then
|
||||||
|
diffargs=""
|
||||||
|
fi
|
||||||
|
(
|
||||||
|
binpath="$VALGRIND ../../samples"
|
||||||
|
cd ./tmp
|
||||||
|
$binpath/stringto-test
|
||||||
|
) > $results
|
||||||
|
|
||||||
|
diff -q $diffargs $results $good
|
||||||
|
rc=$?
|
||||||
|
if [ $rc -eq 0 ] ; then
|
||||||
|
echo "All testcases passed."
|
||||||
|
else
|
||||||
|
diff $diffargs $results $good
|
||||||
|
fi
|
Loading…
Reference in New Issue