aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/yaml/snakeyaml/representer/RepresenterTest.java
blob: 0c944c6bd8ac64d6ddc4526cd7186d350cb34fff (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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/**
 * Copyright (c) 2008, SnakeYAML
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
package org.yaml.snakeyaml.representer;

import junit.framework.TestCase;
import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.Yaml;

public class RepresenterTest extends TestCase {

  public void testRepresenter() {
    MyBean bean = new MyBean();
    bean.setName("Gnome");
    bean.setValid(true);
    bean.setPrimitive(true);
    Yaml yaml = new Yaml();
    assertEquals(
        "!!org.yaml.snakeyaml.representer.RepresenterTest$MyBean {name: Gnome, primitive: true}\n",
        yaml.dump(bean));
  }

  public static class MyBean {

    private String name;
    private Boolean valid;
    private boolean primitive;

    public String getName() {
      return name;
    }

    public void setName(String name) {
      this.name = name;
    }

    public Boolean isValid() {
      return valid;
    }

    public void setValid(Boolean valid) {
      this.valid = valid;
    }

    public boolean isPrimitive() {
      return primitive;
    }

    public void setPrimitive(boolean primitive) {
      this.primitive = primitive;
    }
  }

  public void testRepresenterNoConstructorAvailable() {
    MyBean2 bean = new MyBean2("Gnome", true);
    DumperOptions options = new DumperOptions();
    options.setAllowReadOnlyProperties(true);
    Yaml yaml = new Yaml(options);
    assertEquals("!!org.yaml.snakeyaml.representer.RepresenterTest$MyBean2 {valid: true}\n",
        yaml.dump(bean));
  }

  public static class MyBean2 {

    private String name;
    private Boolean valid;

    public MyBean2(String name, Boolean valid) {
      this();
      this.name = name;
      this.valid = valid;
    }

    private MyBean2() {
      super();
    }

    private String getName() {
      return name;
    }

    public Boolean getValid() {
      return valid;
    }

    @Override
    public String toString() {
      return getName() + " " + getValid();
    }
  }

  public void testRepresenterGetterWithException() {
    MyBean3 bean = new MyBean3("Gnome", false);
    DumperOptions options = new DumperOptions();
    options.setAllowReadOnlyProperties(true);
    Yaml yaml = new Yaml(options);
    try {
      String str = yaml.dump(bean);
      fail("Exception must be reported: " + str);
    } catch (Exception e) {
      assertTrue(true);
    }
    // no exception
    MyBean3 bean2 = new MyBean3("Gnome", true);
    String str = yaml.dump(bean2);
    // isValid is no JavaBean property (it must be a primitive then)
    assertEquals("isValid property must not be dumped.",
        "!!org.yaml.snakeyaml.representer.RepresenterTest$MyBean3 {boolProperty: true, name: Gnome}\n",
        str);
  }

  public static class MyBean3 {

    private final String name;
    private final Boolean valid;
    private final boolean boolProperty;

    public MyBean3(String name, Boolean valid) {
      this.name = name;
      this.valid = valid;
      boolProperty = true;
    }

    public String getName() {
      if (valid) {
        return name;
      } else {
        throw new UnsupportedOperationException("Test.");
      }
    }

    public Boolean isValid() {
      return valid;
    }

    public boolean isBoolProperty() {
      return boolProperty;
    }

    @Override
    public String toString() {
      return "MyBean3<" + name + ", " + isValid() + ">";
    }
  }

  public void testRepresenterAddNull() {
    Representer representer = new Representer();
    try {
      representer.addClassTag(EmptyBean.class, null);
      fail("Tag must be provided.");
    } catch (Exception e) {
      assertEquals("Tag must be provided.", e.getMessage());
    }
  }

  public void testRepresenterEmptyBean() {
    EmptyBean bean = new EmptyBean();
    Yaml yaml = new Yaml();
    try {
      yaml.dump(bean);
      fail("EmptyBean has empty representation.");
    } catch (Exception e) {
      assertEquals(
          "No JavaBean properties found in org.yaml.snakeyaml.representer.RepresenterTest$EmptyBean",
          e.getMessage());
    }
  }

  public static class EmptyBean {

    private int number;

    public void process() {
      number += 1;
    }

    public int obtain() {
      return number;
    }
  }
}