summaryrefslogtreecommitdiffstats
path: root/lib/libUPnP/Neptune/Source/Tests/BufferedStreams1/BufferedStreamsTest1.cpp
blob: 57a5663670096ee3e8fac90ce77e1196d1eac195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*****************************************************************
|
|      BufferedStreams Test Program 1
|
|      (c) 2001-2005 Gilles Boccon-Gibod
|      Author: Gilles Boccon-Gibod (bok@bok.net)
|
 ****************************************************************/

/*----------------------------------------------------------------------
|       includes
+---------------------------------------------------------------------*/
#include "Neptune.h"
#include <stdlib.h>

#if defined(_DEBUG) && defined(WIN32)
#include <crtdbg.h>
#endif

#define CHECK(x) {                                  \
    if (!(x)) {                                     \
        printf("TEST FAILED line %d\n", __LINE__);  \
        return 1;                                   \
    }                                               \
}

/*----------------------------------------------------------------------
|       main
+---------------------------------------------------------------------*/
int
main(int /*argc*/, char** /*argv*/)
{
    // setup debugging
#if defined(_DEBUG) && defined(WIN32)
    int flags = _crtDbgFlag       | 
        _CRTDBG_ALLOC_MEM_DF      |
        _CRTDBG_DELAY_FREE_MEM_DF |
        _CRTDBG_CHECK_ALWAYS_DF;

    _CrtSetDbgFlag(flags);
    //AllocConsole();
    //freopen("CONOUT$", "w", stdout);
#endif 

#if 0
    const char* b0 = "";
    const char* b1 = "\n";
    const char* b2 = "\r";
    const char* b3 = "\r\n";
    const char* b4 = "0\r1\r\r2\r\r\r"       // only \r, up to 3
                     "3\n4\n\n5\n\n\n"       // only \n, up to 3
                     "6\r\n7\n\r"            // one \r and one \n
                     "8\r\n\r9\r\r\na\n\r\r" // two \r and one \n
                     "b\n\r\nc\n\n\rd\r\n\n" // two \n and one \r
                     ;
    const char* b5 = "aaa\r";
    const char* b6 = "aaa\n";
    const char* b7 = "aaa\r\n";

    printf("BufferedInputStream test1 passed\n");
#endif

    NPT_InputStreamReference isr1(new NPT_MemoryStream("0123456789", 10));
    NPT_BufferedInputStream bis(isr1, 3);
    char buffer[256];
    NPT_Result result = bis.ReadLine(buffer, 2);
    CHECK(result == NPT_ERROR_NOT_ENOUGH_SPACE);
    
    return 0;
}