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

« back to all changes in this revision

Viewing changes to src/lib/std/tst/obj/t_inout.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_inout.cpp                                                             -
3
 
// - standard object library - input-output stream 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-2007 amaury darsch                                   -
15
 
// ---------------------------------------------------------------------------
16
 
 
17
 
#include "InputOutput.hpp"
18
 
 
19
 
int main (int, char**) {
20
 
  using namespace afnix;
21
 
 
22
 
  // create a default input stream
23
 
  Buffer sbuf = "hello";
24
 
  long   slen = sbuf.length ();
25
 
  InputOutput io ("hello");
26
 
  if (io.buflen () != slen) return 1;
27
 
 
28
 
  // read each character
29
 
  for (long i = 0; i < slen; i++) {
30
 
    if (io.read () != sbuf.read ()) return 1;
31
 
  }
32
 
  if (io.buflen   () != 0) return 1;
33
 
  if (sbuf.length () != 0) return 1;
34
 
 
35
 
  // write a new string and reset buffer
36
 
  io.write ("hello");
37
 
  sbuf.add ("hello");
38
 
  if (io.buflen ()   != slen) return 1;
39
 
  if (sbuf.length () != slen) return 1;
40
 
 
41
 
  // read each character
42
 
  for (long i = 0; i < slen; i++) {
43
 
    if (io.read () != sbuf.read ()) return 1;
44
 
  }
45
 
  if (io.buflen () != 0)       return 1;
46
 
  if (io.iseof ()  == false)   return 1;
47
 
 
48
 
  // reset and check
49
 
  io.reset ();
50
 
  if (io.iseof ()  == false)   return 1;
51
 
  if (io.buflen () != 0)       return 1;
52
 
 
53
 
  // everything is fine
54
 
  return 0;
55
 
}