summaryrefslogtreecommitdiff
path: root/comphelper/qa
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2018-06-27 00:39:34 +0200
committerTomaž Vajngerl <quikee@gmail.com>2018-07-06 18:25:49 +0200
commit0d0bf4132d7cf81306a3de6592fce40ab69ef040 (patch)
tree124be65dcdc8652d640729959d299b2e2858bac8 /comphelper/qa
parentfc434c8fd62ccb6d083af075f1ab83da6bd76b8d (diff)
base64: change impl. of encodig to also work with OStringBuffer
+ make test simpler and add a test case for the new behaviour Change-Id: Ifc743835f0cd634c79929ce22dc36b5a822a7e88 Reviewed-on: https://gerrit.libreoffice.org/56969 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'comphelper/qa')
-rw-r--r--comphelper/qa/unit/base64_test.cxx94
1 files changed, 52 insertions, 42 deletions
diff --git a/comphelper/qa/unit/base64_test.cxx b/comphelper/qa/unit/base64_test.cxx
index b3f2143d4a41..6a18682ca6bd 100644
--- a/comphelper/qa/unit/base64_test.cxx
+++ b/comphelper/qa/unit/base64_test.cxx
@@ -36,67 +36,77 @@
#include <comphelper/base64.hxx>
#include <sal/log.hxx>
-
-using namespace ::com::sun::star;
-using namespace ::com::sun::star::util;
-
+using namespace css;
+using namespace css::util;
namespace {
-class Base64Test
- : public ::CppUnit::TestFixture
+class Base64Test : public CppUnit::TestFixture
{
public:
- void testBase64();
+ void testBase64Encode();
+ void testBase64Decode();
+ void testBase64EncodeForOStringBuffer();
CPPUNIT_TEST_SUITE(Base64Test);
- CPPUNIT_TEST(testBase64);
+ CPPUNIT_TEST(testBase64Encode);
+ CPPUNIT_TEST(testBase64Decode);
+ CPPUNIT_TEST(testBase64EncodeForOStringBuffer);
CPPUNIT_TEST_SUITE_END();
-
-private:
};
+void Base64Test::testBase64Encode()
+{
+ OUStringBuffer aBuffer;
+ uno::Sequence<sal_Int8> inputSequence;
+ inputSequence = { 0, 0, 0, 0, 0, 1, 2, 3 };
+ comphelper::Base64::encode(aBuffer, inputSequence);
+ CPPUNIT_ASSERT_EQUAL(OUString("AAAAAAABAgM="), aBuffer.makeStringAndClear());
-void doTestEncodeBase64(char const*const pis, const uno::Sequence<sal_Int8>& aPass)
-{
- OUString const is(OUString::createFromAscii(pis));
- OUStringBuffer buf;
- comphelper::Base64::encode(buf, aPass);
- SAL_INFO("sax.cppunit","" << buf.toString());
- CPPUNIT_ASSERT_EQUAL(is, buf.makeStringAndClear());
+ inputSequence = { 5, 2, 3, 0, 0, 1, 2, 3 };
+ comphelper::Base64::encode(aBuffer, inputSequence);
+ CPPUNIT_ASSERT_EQUAL(OUString("BQIDAAABAgM="), aBuffer.makeStringAndClear());
+
+ inputSequence = { sal_Int8(sal_uInt8(200)), 31, 77, 111, 0, 1, 2, 3 };
+ comphelper::Base64::encode(aBuffer, inputSequence);
+ CPPUNIT_ASSERT_EQUAL(OUString("yB9NbwABAgM="), aBuffer.makeStringAndClear());
}
-void doTestDecodeBase64(const uno::Sequence<sal_Int8>& aPass, char const*const pis)
+void Base64Test::testBase64Decode()
{
- OUString const is(OUString::createFromAscii(pis));
- uno::Sequence< sal_Int8 > tempSequence;
- comphelper::Base64::decode(tempSequence, is);
- SAL_INFO("sax.cppunit","" << is);
- bool b = (tempSequence==aPass);
- CPPUNIT_ASSERT(b);
+ uno::Sequence<sal_Int8> decodedSequence;
+
+ uno::Sequence<sal_Int8> expectedSequence = { 0, 0, 0, 0, 0, 1, 2, 3 };
+ comphelper::Base64::decode(decodedSequence, "AAAAAAABAgM=");
+ CPPUNIT_ASSERT(std::equal(expectedSequence.begin(), expectedSequence.end(), decodedSequence.begin()));
+
+ expectedSequence = { 5, 2, 3, 0, 0, 1, 2, 3 };
+ comphelper::Base64::decode(decodedSequence, "BQIDAAABAgM=");
+ CPPUNIT_ASSERT(std::equal(expectedSequence.begin(), expectedSequence.end(), decodedSequence.begin()));
+
+ expectedSequence = { sal_Int8(sal_uInt8(200)), 31, 77, 111, 0, 1, 2, 3 };
+ comphelper::Base64::decode(decodedSequence, "yB9NbwABAgM=");
+ CPPUNIT_ASSERT(std::equal(expectedSequence.begin(), expectedSequence.end(), decodedSequence.begin()));
}
-void Base64Test::testBase64()
+void Base64Test::testBase64EncodeForOStringBuffer()
{
- std::vector< sal_Int8 > tempSeq { 0, 0, 0, 0, 0, 1, 2, 3 };
- uno::Sequence< sal_Int8 > tempSequence = comphelper::containerToSequence(tempSeq);
- doTestEncodeBase64("AAAAAAABAgM=", tempSequence);
- doTestDecodeBase64(tempSequence, "AAAAAAABAgM=");
- tempSeq[0] = sal_Int8(5);
- tempSeq[1] = sal_Int8(2);
- tempSeq[2] = sal_Int8(3);
- tempSequence = comphelper::containerToSequence(tempSeq);
- doTestEncodeBase64("BQIDAAABAgM=", tempSequence);
- doTestDecodeBase64(tempSequence, "BQIDAAABAgM=");
- tempSeq[0] = sal_Int8(sal_uInt8(200));
- tempSeq[1] = sal_Int8(31);
- tempSeq[2] = sal_Int8(77);
- tempSeq[3] = sal_Int8(111);
- tempSequence = comphelper::containerToSequence(tempSeq);
- doTestEncodeBase64("yB9NbwABAgM=", tempSequence);
- doTestDecodeBase64(tempSequence, "yB9NbwABAgM=");
+ OStringBuffer aBuffer;
+ uno::Sequence<sal_Int8> inputSequence;
+
+ inputSequence = { 0, 0, 0, 0, 0, 1, 2, 3 };
+ comphelper::Base64::encode(aBuffer, inputSequence);
+ CPPUNIT_ASSERT_EQUAL(OString("AAAAAAABAgM="), OString(aBuffer.makeStringAndClear()));
+
+ inputSequence = { 5, 2, 3, 0, 0, 1, 2, 3 };
+ comphelper::Base64::encode(aBuffer, inputSequence);
+ CPPUNIT_ASSERT_EQUAL(OString("BQIDAAABAgM="), OString(aBuffer.makeStringAndClear()));
+
+ inputSequence = { sal_Int8(sal_uInt8(200)), 31, 77, 111, 0, 1, 2, 3 };
+ comphelper::Base64::encode(aBuffer, inputSequence);
+ CPPUNIT_ASSERT_EQUAL(OString("yB9NbwABAgM="), OString(aBuffer.makeStringAndClear()));
}
CPPUNIT_TEST_SUITE_REGISTRATION(Base64Test);