From 8f27e65bddd7d4b8515ce620fb485fdd78fcdf89 Mon Sep 17 00:00:00 2001 From: Constantin Jucovschi Date: Fri, 24 Apr 2009 07:20:22 -0400 Subject: Initial commit --- commline/test/Makefile | 43 ++++++++++++++++++++ commline/test/functest.cc | 59 +++++++++++++++++++++++++++ commline/test/test_cml.cc | 101 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 203 insertions(+) create mode 100644 commline/test/Makefile create mode 100644 commline/test/functest.cc create mode 100644 commline/test/test_cml.cc (limited to 'commline/test') diff --git a/commline/test/Makefile b/commline/test/Makefile new file mode 100644 index 0000000..7297c80 --- /dev/null +++ b/commline/test/Makefile @@ -0,0 +1,43 @@ +# +# This file is part of rasdaman community. +# +# Rasdaman community is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Rasdaman community 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with rasdaman community. If not, see . +# +# Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann / +# rasdaman GmbH. +# +# For more information please see +# or contact Peter Baumann via . # Top Level makefile. This points to the various modules that have to be build +# and/or deployed + +include $(RMANBASE)/Makefile.inc + +OBJS = test_cml.o +BINS = test_cml functest +LIBS = +MISCS = core + +CXXFLAGS += ${COMPFLAGS} + +all: $(BINS) + +test_cml: test_cml.cc ../cmlparser.o + $(CXX) $(CXXFLAGS) -I. -I.. -o test_cml test_cml.cc ../cmlparser.o + +functest: functest.cc ../cmlparser.o + $(CXX) $(CXXFLAGS) -I. -I.. -o functest functest.cc ../cmlparser.o + +clean: + -rm $(OBJS) $(MISC) + diff --git a/commline/test/functest.cc b/commline/test/functest.cc new file mode 100644 index 0000000..96bd87d --- /dev/null +++ b/commline/test/functest.cc @@ -0,0 +1,59 @@ +/* +* This file is part of rasdaman community. +* +* Rasdaman community is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Rasdaman community 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 General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with rasdaman community. If not, see . +* +* Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann / +rasdaman GmbH. +* +* For more information please see +* or contact Peter Baumann via . +*/ +static const char rcsid[] = "@(#)commline,functest: $Id: functest.cc,v 1.1 2005/09/15 12:55:37 rasdev Exp $"; + +#include + +using std::cout; +using std::endl; + + +int main() + { + CommandLineParser &cmlp = CommandLineParser::getInstance(); + + try + { + cmlp.addFlagParameter('f', "fragmented", "fragment file until there is no file any more"); + cmlp.addFlagParameter(0 , "delete", "delete root directory"); + cmlp.addFlagParameter('s', NULL, "use server for crushing system"); + + cmlp.addStringParameter('u', "user", " user name\n\t\tcucubau", "rasguest"); + cmlp.addStringParameter( CommandLineParser::noShortName, "passwd", " user password", "rasguest"); + cmlp.addStringParameter('d', CommandLineParser::noLongName, " database name"); + } + catch(CmlException e) + { + cout << "Error defining options:" << endl; + cout << e.what() << endl; + return EXIT_FAILURE; + } + + cmlp.printHelp(); + + return EXIT_SUCCESS; + } + + + + diff --git a/commline/test/test_cml.cc b/commline/test/test_cml.cc new file mode 100644 index 0000000..df9a072 --- /dev/null +++ b/commline/test/test_cml.cc @@ -0,0 +1,101 @@ +/* +* This file is part of rasdaman community. +* +* Rasdaman community is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Rasdaman community 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 General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with rasdaman community. If not, see . +* +* Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann / +rasdaman GmbH. +* +* For more information please see +* or contact Peter Baumann via . +*/ + +static const char rcsid[] = "@(#)commline,test_cml.cc: $Id: test_cml.cc,v 1.3 2005/12/21 23:02:06 rasdev Exp $"; + +#include "cmlparser.hh" + +using std::cout; +using std::endl; + +//set to 1 for testing invalid options +const int TESTOPT=0; + +int +main(int argc, char** argv) + { + CommandLineParser& cmlInter = CommandLineParser::getInstance(); + + if(TESTOPT) + cout<<"------ Defining Test options -----"< s desc"); + CommandLineParameter& e = cmlInter.addStringParameter(CommandLineParser::noShortName,"ts", " test -"); + CommandLineParameter& f = cmlInter.addStringParameter('t', CommandLineParser::noLongName, " test --", "test --"); + + if(TESTOPT) + CommandLineParameter& g = cmlInter.addStringParameter(CommandLineParser::noShortName, CommandLineParser::noLongName, " - --"); + + } + catch(CmlException& e) + { + cout << "Erorr:" << e.what() << endl; + return 1; + } + + cout<<"------ Test options -----"<