/* * 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 RSS data conversion functions. */ #include #include "stream.hpp" #include "string.hpp" #include "rss.hpp" namespace tuscany { namespace rss { ostream* writer(const string& s, ostream* os) { (*os) << s; return os; } const string itemEntry("\n" "\n" " fruit\n" " cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b\n" " \n" " \n" " Apple\n" " $2.99\n" " \n" " \n" "\n"); const string itemTextEntry("\n" "\n" " fruit\n" " cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b\n" " Apple\n" "\n"); const string itemNoDescriptionEntry("\n" "\n" " fruit\n" " cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b\n" "\n"); const string incompleteEntry("\n" " fruit\n" " \n" " \n" " Orange\n" " 3.55\n" " \n" " \n" ""); const string completedEntry("\n" "\n" " fruit\n" " \n" " \n" " \n" " Orange\n" " 3.55\n" " \n" " \n" "\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 = list() + (list() + element + value("entry") + value(list() + element + value("title") + value(string("fruit"))) + value(list() + element + value("id") + value(string("cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b"))) + value(list() + element + value("content") + value(i))); ostringstream os; writeRSSEntry(writer, &os, a); assert(str(os) == itemEntry); } { const list a = list() + (list() + element + value("entry") + value(list() + element + value("title") + value(string("fruit"))) + value(list() + element + value("id") + value(string("cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b"))) + value(list() + element + value("content") + value(string("Apple")))); ostringstream os; writeRSSEntry(writer, &os, a); assert(str(os) == itemTextEntry); } { const list a = list() + (list() + element + value("entry") + value(list() + element + value("title") + value(string("fruit"))) + value(list() + element + value("id") + value(string("cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b")))); ostringstream os; writeRSSEntry(writer, &os, a); assert(str(os) == itemNoDescriptionEntry); } { const list a = content(readRSSEntry(mklist(itemEntry))); ostringstream os; writeRSSEntry(writer, &os, a); assert(str(os) == itemEntry); } { const list a = content(readRSSEntry(mklist(itemTextEntry))); ostringstream os; writeRSSEntry(writer, &os, a); assert(str(os) == itemTextEntry); } { const list a = content(readRSSEntry(mklist(itemNoDescriptionEntry))); ostringstream os; writeRSSEntry(writer, &os, a); assert(str(os) == itemNoDescriptionEntry); } { const list a = content(readRSSEntry(mklist(incompleteEntry))); ostringstream os; writeRSSEntry(writer, &os, a); assert(str(os) == completedEntry); } return true; } const string emptyFeed("\n" "\n" " \n" " Feed\n" " 1234\n" " Feed\n" " \n" "\n"); const string itemFeed("\n" "\n" " \n" " Feed\n" " 1234\n" " Feed\n" " \n" " fruit\n" " cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b\n" " \n" " \n" " Apple\n" " $2.99\n" " \n" " \n" " \n" " \n" " fruit\n" " cart-53d67a61-aa5e-4e5e-8401-39edeba8b83c\n" " \n" " \n" " Orange\n" " $3.55\n" " \n" " \n" " \n" " \n" "\n"); bool testFeed() { { const list a = list() + (list() + element + value("feed") + value(list() + element + value("title") + value(string("Feed"))) + value(list() + element + value("id") + value(string("1234")))); ostringstream os; writeRSSFeed(writer, &os, a); assert(str(os) == emptyFeed); } { const list a = content(readRSSFeed(mklist(emptyFeed))); ostringstream os; writeRSSFeed(writer, &os, a); assert(str(os) == emptyFeed); } { const list i1 = list() + element + "item" + (list() + element + "name" + "Apple") + (list() + element + "price" + "$2.99"); const list i2 = list() + element + "item" + (list() + element + "name" + "Orange") + (list() + element + "price" + "$3.55"); const list i = list() + value(list() + element + value("entry") + value(list() + element + value("title") + value(string("fruit"))) + value(list() + element + value("id") + value(string("cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b"))) + value(list() + element + value("content") + value(i1))) + value(list() + element + value("entry") + value(list() + element + value("title") + value(string("fruit"))) + value(list() + element + value("id") + value(string("cart-53d67a61-aa5e-4e5e-8401-39edeba8b83c"))) + value(list() + element + value("content") + value(i2))); const list a = list() + (append(list() + element + value("feed") + value(list() + element + value("title") + value(string("Feed"))) + value(list() + element + value("id") + value("1234")), i)); ostringstream os; writeRSSFeed(writer, &os, a); assert(str(os) == itemFeed); } { const list a = content(readRSSFeed(mklist(itemFeed))); ostringstream os; writeRSSFeed(writer, &os, a); assert(str(os) == itemFeed); } { const list a = elementsToValues(content(readRSSFeed(mklist(itemFeed)))); ostringstream os; writeRSSFeed(writer, &os, valuesToElements(a)); assert(str(os) == itemFeed); } return true; } } } int main() { tuscany::gc_scoped_pool p; tuscany::cout << "Testing..." << tuscany::endl; tuscany::rss::testEntry(); tuscany::rss::testFeed(); tuscany::cout << "OK" << tuscany::endl; return 0; }