aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com/yahoo/text/JSONWriterTestCase.java
blob: 247eaf93b6627a7034310b8e396413146e049002 (plain) (blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.text;

import org.junit.Test;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;

import static org.junit.Assert.*;

/**
 * Tests the JSON writer
 *
 * @author bratseth
 */
@SuppressWarnings("deprecation")
public class JSONWriterTestCase {

    @Test
    public void testJSONWriter() throws IOException {
        OutputStream out = new ByteArrayOutputStream();
        JSONWriter w = new JSONWriter(out);

        w.beginObject();

        w.beginField("string").value("a string").endField();
        w.beginField("number").value(37).endField();
        w.beginField("true").value(true).endField();
        w.beginField("false").value(false).endField();
        w.beginField("null").value().endField();

        w.beginField("object").beginObject();
        w.beginField("nested-array").beginArray().beginArrayValue().value(1).endArrayValue().endArray().endField();
        w.endObject().endField();

        w.beginField("array").beginArray();
        w.beginArrayValue().value("item1").endArrayValue();
        w.beginArrayValue().value("item2").endArrayValue();
        w.beginArrayValue().beginObject().beginField("nested").value("item3").endField().endObject().endArrayValue();
        w.endArray().endField();

        w.endObject();

        assertEquals("{\"string\":\"a string\"," +
                      "\"number\":37," +
                      "\"true\":true," +
                      "\"false\":false," +
                      "\"null\":null," +
                      "\"object\":{\"nested-array\":[1]}," +
                      "\"array\":[\"item1\",\"item2\",{\"nested\":\"item3\"}]}",
                     out.toString());
    }

    @Test
    public void testJSONWriterEmptyObject() throws IOException {
        OutputStream out = new ByteArrayOutputStream();
        JSONWriter w = new JSONWriter(out);
        w.beginObject();
        w.endObject();

        assertEquals("{}",out.toString());
    }

    @Test
    public void testJSONWriterEmptyArray() throws IOException {
        OutputStream out = new ByteArrayOutputStream();
        JSONWriter w = new JSONWriter(out);
        w.beginArray();
        w.endArray();

        assertEquals("[]",out.toString());
    }

    @Test
    public void testJSONWriterStringOnly() throws IOException {
        OutputStream out = new ByteArrayOutputStream();
        JSONWriter w = new JSONWriter(out);
        w.value("Hello, world!");

        assertEquals("\"Hello, world!\"",out.toString());
    }

    @Test
    public void testJSONWriterNestedArrays() throws IOException {
        OutputStream out = new ByteArrayOutputStream();
        JSONWriter w = new JSONWriter(out);
        w.beginArray();

        w.beginArrayValue().beginArray();
        w.endArray().endArrayValue();

        w.beginArrayValue().beginArray();
        w.beginArrayValue().value("hello").endArrayValue();
        w.beginArrayValue().value("world").endArrayValue();
        w.endArray().endArrayValue();

        w.beginArrayValue().beginArray();
        w.endArray().endArrayValue();

        w.beginArrayValue().beginArray();
        w.beginArrayValue().beginArray();
        w.endArray().endArrayValue();
        w.endArray().endArrayValue();

        w.beginArrayValue().beginArray();
        w.endArray().endArrayValue();

        w.endArray();

        assertEquals("[[],[\"hello\",\"world\"],[],[[]],[]]",out.toString());
    }

}