summaryrefslogtreecommitdiffstats
path: root/tests/testanyref.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-06 19:28:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-06 19:28:49 +0900
commit247750abcbf6760bbc52aa5d64fc375d6fbee8a3 (patch)
tree86e029a960ddd599edbeee8dddf70e87ee314e23 /tests/testanyref.cpp
parent595ad58e25c5d0f0c512194f66708f99e5bc1527 (diff)
downloadarts-247750abcbf6760bbc52aa5d64fc375d6fbee8a3.tar.gz
arts-247750abcbf6760bbc52aa5d64fc375d6fbee8a3.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 00d4f92b717fbcbed6f9eee361975d6ee5380d59)
Diffstat (limited to 'tests/testanyref.cpp')
-rw-r--r--tests/testanyref.cpp97
1 files changed, 97 insertions, 0 deletions
diff --git a/tests/testanyref.cpp b/tests/testanyref.cpp
new file mode 100644
index 0000000..861291b
--- /dev/null
+++ b/tests/testanyref.cpp
@@ -0,0 +1,97 @@
+ /*
+
+ Copyright (C) 2000 Stefan Westerfeld
+ stefan@space.twc.de
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+
+ */
+
+#include "common.h"
+#include "test.h"
+
+using namespace Arts;
+using namespace std;
+
+struct TestAnyRef : public TestCase
+{
+ TESTCASE(TestAnyRef);
+
+ Dispatcher dispatcher;
+ Buffer *buffer, *buffer2;
+ Any any;
+
+ void setUp() {
+ buffer = new Buffer();
+ any.type = "";
+ any.value.clear();
+ }
+ void tearDown() {
+ delete buffer; buffer = 0;
+ }
+ void copy(AnyRef& src, AnyRef& dest)
+ {
+ Buffer tmp;
+ src.write(&tmp);
+ tmp.rewind();
+ dest.read(&tmp);
+ }
+ TEST(ioAnyFloat) {
+ // create a buffer with a float and a end-of-buffer delimiter
+ float f = 1.1;
+ buffer->writeFloat(f);
+ buffer->writeLong(12345678);
+ buffer->rewind();
+
+ // see if reading it as float reads the *only* the float
+ any.type = "float";
+
+ AnyRef ref(any);
+ ref.read(buffer);
+ testEquals(12345678,buffer->readLong());
+ testEquals(4, any.value.size());
+
+ // check if the value is all right by copying it to a "real" float
+ float f2;
+ AnyRef ref2(f2);
+ copy(ref,ref2);
+ testEquals(f,f2);
+ }
+ TEST(ioAnyType) {
+ // do the same again with a complex structured type
+ Arts::InterfaceDef objInterface =
+ Dispatcher::the()->interfaceRepo().queryInterface("Arts::Object");
+ testEquals("Arts::Object", objInterface.name);
+
+ objInterface.writeType(*buffer);
+ buffer->writeLong(12345678);
+ buffer->rewind();
+
+ vector<mcopbyte> objInterfaceRaw;
+ buffer->read(objInterfaceRaw, buffer->remaining() - 4);
+ buffer->rewind();
+ testAssert(objInterfaceRaw.size() > 50);
+
+ any.type = "Arts::InterfaceDef";
+ AnyRef ref(any);
+ ref.read(buffer);
+ testEquals(12345678,buffer->readLong());
+ testAssert(objInterfaceRaw == any.value);
+ }
+
+};
+
+TESTMAIN(TestAnyRef);