~ubuntu-branches/ubuntu/wily/afnix/wily

« back to all changes in this revision

Viewing changes to src/lib/std/tst/t_pathname.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2011-03-16 21:31:18 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110316213118-gk4k3ez3e5d2huna
Tags: 2.0.0-1
* QA upload.
* New upstream release
* Debian source format is 3.0 (quilt)
* Fix debhelper-but-no-misc-depends
* Fix ancient-standards-version
* Fix package-contains-linda-override
* debhelper compatibility is 7
* Fix dh-clean-k-is-deprecated

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ---------------------------------------------------------------------------
 
2
// - t_pathname.cpp                                                          -
 
3
// - standard object library - path name class tester                        -
 
4
// ---------------------------------------------------------------------------
 
5
// - This program is free software;  you can redistribute it  and/or  modify -
 
6
// - it provided that this copyright notice is kept intact.                  -
 
7
// -                                                                         -
 
8
// - This program  is  distributed in  the hope  that it will be useful, but -
 
9
// - without  any  warranty;  without  even   the   implied    warranty   of -
 
10
// - merchantability or fitness for a particular purpose.  In no event shall -
 
11
// - the copyright holder be liable for any  direct, indirect, incidental or -
 
12
// - special damages arising in any way out of the use of this software.     -
 
13
// ---------------------------------------------------------------------------
 
14
// - copyright (c) 1999-2011 amaury darsch                                   -
 
15
// ---------------------------------------------------------------------------
 
16
 
 
17
#include "System.hpp"
 
18
#include "Pathname.hpp"
 
19
 
 
20
int main (int, char**) {
 
21
  using namespace afnix;
 
22
 
 
23
  // create the path components
 
24
  String fnam = "axi";
 
25
  String dnam = System::join (System::join ("usr"), "bin");
 
26
  String rnam = System::rootdir ();   
 
27
  // create the path object
 
28
  Pathname path (fnam, dnam);
 
29
 
 
30
  // check the file name
 
31
  if (path.getfnam () != fnam) return 1;
 
32
  // check the directory name
 
33
  if (path.getdnam () != dnam) return 1;
 
34
  
 
35
  // check the directory components
 
36
  if (path.length  ()  != 2) return 1;
 
37
  if (path.getpath (0) != System::join ("usr")) return 1;
 
38
  if (path.getpath (1) != "bin") return 1;
 
39
 
 
40
  // create a simple root pathname
 
41
  Pathname prnm (rnam);
 
42
  // check the directory name
 
43
  if (prnm.getdnam () != rnam) return 1;
 
44
 
 
45
  // create a combined pathname
 
46
  Pathname cpnm ("", dnam);
 
47
  // check the directory name
 
48
  if (cpnm.getdnam () != dnam) return 1;
 
49
 
 
50
  // finally - no failure
 
51
  return 0;
 
52
}