concat.test.cc

Go to the documentation of this file.
00001 /*
00002    The lestes compiler suite
00003    Copyright (C) 2002, 2003, 2004, 2005 Miroslav Tichy
00004    Copyright (C) 2002, 2003, 2004, 2005 Petr Zika
00005    Copyright (C) 2002, 2003, 2004, 2005 Vojtech Hala
00006    Copyright (C) 2002, 2003, 2004, 2005 Jiri Kosina
00007    Copyright (C) 2002, 2003, 2004, 2005 Pavel Sanda
00008    Copyright (C) 2002, 2003, 2004, 2005 Jan Zouhar
00009    Copyright (C) 2002, 2003, 2004, 2005 Rudolf Thomas
00010 
00011    This program is free software; you can redistribute it and/or modify
00012    it under the terms of the GNU General Public License as published by
00013    the Free Software Foundation; version 2 of the License.
00014 
00015    This program is distributed in the hope that it will be useful,
00016    but WITHOUT ANY WARRANTY; without even the implied warranty of
00017    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018    GNU General Public License for more details.
00019 
00020    See the full text of the GNU General Public License version 2, and
00021    the limitations in the file doc/LICENSE.
00022 
00023    By accepting the license the licensee waives any and all claims
00024    against the copyright holder(s) related in whole or in part to the
00025    work, its use, and/or the inability to use it.
00026  
00027  */
00028 /*! \file
00029   \brief Unit test.
00030   
00031   Unit test for class concat.
00032   \author pt
00033 */
00034 #include <lestes/common.hh>
00035 #include <lestes/equality.hh>
00036 #include <lestes/std/source_location.hh>
00037 #include <lestes/std/file_info.hh>
00038 #include <lestes/lang/cplus/lex/concat.hh>
00039 #include <lestes/lang/cplus/lex/pp_token.hh>
00040 #include <lestes/lang/cplus/lex/token_sequence.hh>
00041 #include <lestes/lang/cplus/lex/token_value.hh>
00042 
00043 package(lestes);
00044 package(lang);
00045 package(cplus);
00046 package(lex);
00047 
00048 using namespace ::std;
00049 
00050 /*!
00051   \brief Tests concat class.
00052 
00053   Performs testing of concat class.
00054 */
00055 void concat_test(void)
00056 {
00057         ptr<concat> cat = concat::instance();
00058         ptr<file_info> fi = file_info::create("<testing>",NULL);
00059         ptr<token_sequence> ts;
00060         
00061         ptr<source_location> l = source_location::create(fi,1,1);
00062         ptr<source_location> m = source_location::create(fi,1,2);
00063         ptr<pp_token> t = pp_token::create(l,pp_token::TOK_PLUS);
00064         ptr<pp_token> u = pp_token::create(m,pp_token::TOK_EQ);
00065         ts = cat->process(t,u);
00066         lassert(ts);
00067         lassert(ts->length() == 1);
00068         ptr<pp_token> r = ts->read_front();
00069         lassert(r);
00070         lassert(is_equal(r->type_get(),pp_token::TOK_PLUS_EQ));
00071         lassert(is_equal(r->location_get(),l));
00072 
00073         ts = cat->process(u,t);
00074         lassert(ts);
00075         lassert(ts->length() == 2);
00076         r = ts->read_front();
00077         lassert(is_equal(r,u));
00078         ptr<pp_token> s = ts->read_front();
00079         lassert(is_equal(s,t));
00080         
00081         t = pp_token::create(l,pp_token::TOK_IDENT,token_value::create("L"));
00082         u = pp_token::create(m,pp_token::TOK_STRING_LIT,token_value::create("abc"));
00083         ts = cat->process(t,u);
00084         lassert(ts->length() == 1);
00085         r = ts->read_front();
00086         lassert(r);
00087         lassert(is_equal(r->type_get(),pp_token::TOK_WSTRING_LIT));
00088         lassert(is_equal(r->location_get(),l));
00089 
00090 }
00091 
00092 end_package(lex);
00093 end_package(cplus);
00094 end_package(lang);
00095 end_package(lestes);
00096 
00097 /*!
00098   \brief Main function.
00099 
00100   Runs the unit test in different namespace.
00101 */
00102 int main(void)
00103 {
00104 	::lestes::lang::cplus::lex::concat_test();
00105         return 0;
00106 }
00107 /* vim: set ft=lestes : */

Generated on Mon Feb 12 18:22:32 2007 for lestes by doxygen 1.5.1-20070107