/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /* $Rev$ $Date$ */ /** * Test ATOM data conversion functions. */ #include #include "stream.hpp" #include "string.hpp" #include "atom.hpp" namespace tuscany { namespace atom { ostream* writer(const string& s, ostream* os) { (*os) << s; return os; } string itemEntry("\n" "" "item" "cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b" "" "" "Apple$2.99" "" "" "" "\n"); string itemTextEntry("\n" "" "item" "cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b" "Apple" "" "\n"); string incompleteEntry("" "item" "" "Orange" "3.55" "" "" ""); string completedEntry("\n" "" "item" "" "" "" "Orange" "3.55" "" "" "\n"); bool testEntry() { { const list i = list() + element + value("item") + value(list() + element + value("name") + value(string("Apple"))) + value(list() + element + value("price") + value(string("$2.99"))); const list a = mklist(string("item"), string("cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b"), i); ostringstream os; writeATOMEntry(writer, &os, a); assert(str(os) == itemEntry); } { const list a = mklist(string("item"), string("cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b"), string("Apple")); ostringstream os; writeATOMEntry(writer, &os, a); assert(str(os) == itemTextEntry); } { const list a = content(readATOMEntry(mklist(itemEntry))); ostringstream os; writeATOMEntry(writer, &os, a); assert(str(os) == itemEntry); } { const list a = content(readATOMEntry(mklist(itemTextEntry))); ostringstream os; writeATOMEntry(writer, &os, a); assert(str(os) == itemTextEntry); } { const list a = content(readATOMEntry(mklist(incompleteEntry))); ostringstream os; writeATOMEntry(writer, &os, a); assert(str(os) == completedEntry); } return true; } string emptyFeed("\n" "" "Feed" "1234" "\n"); string itemFeed("\n" "" "Feed" "1234" "" "item" "cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b" "" "" "Apple$2.99" "" "" "" "" "" "item" "cart-53d67a61-aa5e-4e5e-8401-39edeba8b83c" "" "" "Orange$3.55" "" "" "" "" "\n"); bool testFeed() { { ostringstream os; writeATOMFeed(writer, &os, mklist("Feed", "1234")); assert(str(os) == emptyFeed); } { const list a = content(readATOMFeed(mklist(emptyFeed))); ostringstream os; writeATOMFeed(writer, &os, a); assert(str(os) == emptyFeed); } { const list i = list() + (list() + "item" + "cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b" + (list() + element + "item" + (list() + element + "name" + "Apple") + (list() + element + "price" + "$2.99"))) + (list() + "item" + "cart-53d67a61-aa5e-4e5e-8401-39edeba8b83c" + (list() + element + "item" + (list() + element + "name" + "Orange") + (list() + element + "price" + "$3.55"))); const list a = cons("Feed", cons("1234", i)); ostringstream os; writeATOMFeed(writer, &os, a); assert(str(os) == itemFeed); } { const list i = list() + (list() + "item" + "cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b" + valueToElement(list() + "item" + (list() + "name" + "Apple") + (list() + "price" + "$2.99"))) + (list() + "item" + "cart-53d67a61-aa5e-4e5e-8401-39edeba8b83c" + valueToElement(list() + "item" + (list() + "name" + "Orange") + (list() + "price" + "$3.55"))); const list a = cons("Feed", cons("1234", i)); ostringstream os; writeATOMFeed(writer, &os, a); assert(str(os) == itemFeed); } { const list a = content(readATOMFeed(mklist(itemFeed))); ostringstream os; writeATOMFeed(writer, &os, a); assert(str(os) == itemFeed); } return true; } } } int main() { tuscany::cout << "Testing..." << tuscany::endl; tuscany::atom::testEntry(); tuscany::atom::testFeed(); tuscany::cout << "OK" << tuscany::endl; return 0; }