⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_path.cpp

📁 RapidSVN 是一个易于使用的跨平台的 subversion(源代码管理工具) 的图形界面的客房端。用 C++ 写成
💻 CPP
字号:
/* * ==================================================================== * Copyright (c) 2002-2006 The RapidSvn Group.  All rights reserved. * * This program 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 2 of the License, or * (at your option) any later version. *  * This program 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 this program (in the file GPL.txt); if not, write to  * the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,  * Boston, MA  02110-1301  USA * * This software consists of voluntary contributions made by many * individuals.  For exact contribution history, see the revision * history and logs, available at http://rapidsvn.tigris.org/. * ==================================================================== */// app#include "test_path.hpp"#include <string>//svncpp#include "svncpp/path.hpp"CPPUNIT_TEST_SUITE_REGISTRATION (PathTestCase);voidPathTestCase::setUp (){}voidPathTestCase::testInit (){  svn::Path pathEmpty;  CPPUNIT_ASSERT (strcmp ("", pathEmpty.c_str ()) == 0);  CPPUNIT_ASSERT (pathEmpty.isset () == false);  svn::Path pathOne = "/some/path/to/repository";  CPPUNIT_ASSERT (strcmp ("/some/path/to/repository", pathOne.c_str ()) == 0);  CPPUNIT_ASSERT (pathOne.isset ());  svn::Path pathTwo = "http://this.is/a/url";  CPPUNIT_ASSERT (strcmp ("http://this.is/a/url", pathTwo.c_str ()) == 0);  CPPUNIT_ASSERT (pathTwo.isset ());  svn::Path pathThree = "file:///this.is/a/url";  CPPUNIT_ASSERT (strcmp ("file:///this.is/a/url", pathThree.c_str ()) == 0);  CPPUNIT_ASSERT (pathThree.isset ());}voidPathTestCase::testSplit (){  svn::Path pathTest = "/some/path/to/repository";  std::string dirpath = "";  std::string basename = "";  pathTest.split (dirpath, basename);  CPPUNIT_ASSERT (dirpath == "/some/path/to");  CPPUNIT_ASSERT (basename == "repository");  svn::Path test1 = "file.txt";  std::string dir, file, ext;  test1.split (dir, file, ext);  CPPUNIT_ASSERT (strcmp (file.c_str (), "file") == 0);    CPPUNIT_ASSERT (strcmp (dir.c_str (), "") == 0);    CPPUNIT_ASSERT (strcmp (ext.c_str (), ".txt") == 0);}voidPathTestCase::testAddComponent (){  svn::Path pathTest = "/some/path/to/foo";  std::string newBasename = "newname";  pathTest.addComponent (newBasename);  CPPUNIT_ASSERT (0 == strcmp (pathTest.c_str(),                                "/some/path/to/foo/newname"));  svn::Path urlTest = "http://some/url/to/repository";  std::string newFile = "newname";  urlTest.addComponent (newFile);  CPPUNIT_ASSERT (0 == strcmp (urlTest.c_str(),                                "http://some/url/to/repository/newname"));  // Now test every possible combination:  // * add another absolute UNIX path to a UNIX path  // * add another absolute Win path to a UNIX path  // * add another absolute URL to a UNIX path  // * ...  // we always expect as a result the path that was added  // (because it's absolute it will replace the existing path)  static const char * url1 = "http://this/is/a/new/url";  static const char * unix1 = "/this/is/a/new/unix/path";  static const char * win1 = "c:/this/is/a/new/win/path";  static const char * url2 = "http://some/url/to/foo";  static const char * unix2 = "/some/path/to/foo";  static const char * win2 = "c:/some/path/to/foo";  // URL1+URL2=URL2  svn::Path path (url1);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), url1));  path.addComponent (url2);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), url2));  // URL1+WIN2=WIN2  path = url1;  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), url1));  path.addComponent (win2);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), win2));  // URL1+UNIX2=UNIX2  path = url1;  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), url1));  path.addComponent (unix2);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), unix2));  // WIN1+URL2=URL2  path = win1;  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), win1));  path.addComponent (url2);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), url2));  // WIN1+WIN2=WIN2  path = win1;  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), win1));  path.addComponent (win2);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), win2));  // WIN1+UNIX2=UNIX2  path = win1;  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), win1));  path.addComponent (unix2);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), unix2));  // UNIX1+URL2=URL2  path = unix1;  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), unix1));  path.addComponent (url2);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), url2));  // UNIX1+WIN2=WIN2  path = unix1;  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), unix1));  path.addComponent (win2);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), win2));  // UNIX1+UNIX2=UNIX2  path = unix1;  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), unix1));  path.addComponent (unix2);  CPPUNIT_ASSERT (0 == strcmp (path.c_str (), unix2));}voidPathTestCase::testCopy (){  svn::Path pathOne = "/some/path";  svn::Path pathTwo = pathOne;  CPPUNIT_ASSERT (strcmp (pathOne.c_str (), pathTwo.c_str ()) == 0);}voidPathTestCase::testIsUrl (){  svn::Path pathOne = "file:///this.is/a/url";  CPPUNIT_ASSERT (pathOne.isUrl ());  CPPUNIT_ASSERT (strcmp (pathOne.c_str (), "file:///this.is/a/url") == 0);}voidPathTestCase::testSubstr (){  svn::Path test ("/home/sleepy/tmp/sf âê/Bla Bla Blubb");  int length = 25;  std::string result = "";  result = test.substr (length);  CPPUNIT_ASSERT (result == "Bla Bla Blubb");}voidPathTestCase::testUnescape (){  svn::Path test ("/home/sleepy/tmp/sf%20x%20y");  CPPUNIT_ASSERT (test.unescape () == "/home/sleepy/tmp/sf x y");}voidPathTestCase::testLength (){  svn::Path test ("/tmp/sf%20x%20y");  CPPUNIT_ASSERT (test.length () == 15);}/* ----------------------------------------------------------------- * local variables: * eval: (load-file "../../../rapidsvn-dev.el") * end: */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -