-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13836d7
commit ef17f26
Showing
2 changed files
with
113 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 113 additions & 0 deletions
113
src/test/java/com/fasterxml/jackson/databind/struct/EnumFormatShapeTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
package com.fasterxml.jackson.databind.struct; | ||
|
||
import com.fasterxml.jackson.annotation.*; | ||
import com.fasterxml.jackson.annotation.JsonFormat.Shape; | ||
|
||
import com.fasterxml.jackson.databind.*; | ||
|
||
/** | ||
* Unit tests for verifying serialization of simple basic non-structured | ||
* types; primitives (and/or their wrappers), Strings. | ||
*/ | ||
public class EnumFormatShapeTest | ||
extends BaseMapTest | ||
{ | ||
@JsonFormat(shape=JsonFormat.Shape.OBJECT) | ||
static enum PoNUM { | ||
A("a1"), B("b2"); | ||
|
||
@JsonProperty | ||
protected final String value; | ||
|
||
private PoNUM(String v) { value = v; } | ||
|
||
public String getValue() { return value; } | ||
} | ||
|
||
static enum OK { | ||
V1("v1"); | ||
protected String key; | ||
OK(String key) { this.key = key; } | ||
} | ||
|
||
static class PoNUMContainer { | ||
@JsonFormat(shape=Shape.NUMBER) | ||
public OK text = OK.V1; | ||
} | ||
|
||
@JsonFormat(shape=JsonFormat.Shape.ARRAY) // alias for 'number', as of 2.5 | ||
static enum PoAsArray | ||
{ | ||
A, B; | ||
} | ||
|
||
// for [databind#572] | ||
static class PoOverrideAsString | ||
{ | ||
@JsonFormat(shape=Shape.STRING) | ||
public PoNUM value = PoNUM.B; | ||
} | ||
|
||
static class PoOverrideAsNumber | ||
{ | ||
@JsonFormat(shape=Shape.NUMBER) | ||
public PoNUM value = PoNUM.B; | ||
} | ||
|
||
// for [databind#1543] | ||
@JsonFormat(shape = JsonFormat.Shape.NUMBER_INT) | ||
enum Color { | ||
RED, | ||
YELLOW, | ||
GREEN | ||
} | ||
|
||
static class ColorWrapper { | ||
public final Color color; | ||
|
||
ColorWrapper(Color color) { | ||
this.color = color; | ||
} | ||
} | ||
|
||
/* | ||
/********************************************************** | ||
/* Tests | ||
/********************************************************** | ||
*/ | ||
|
||
private final ObjectMapper MAPPER = new ObjectMapper(); | ||
|
||
// Tests for JsonFormat.shape | ||
|
||
public void testEnumAsObjectValid() throws Exception { | ||
assertEquals("{\"value\":\"a1\"}", MAPPER.writeValueAsString(PoNUM.A)); | ||
} | ||
|
||
public void testEnumAsIndexViaAnnotations() throws Exception { | ||
assertEquals("{\"text\":0}", MAPPER.writeValueAsString(new PoNUMContainer())); | ||
} | ||
|
||
// As of 2.5, use of Shape.ARRAY is legal alias for "write as number" | ||
public void testEnumAsObjectBroken() throws Exception | ||
{ | ||
assertEquals("0", MAPPER.writeValueAsString(PoAsArray.A)); | ||
} | ||
|
||
// [databind#572] | ||
public void testOverrideEnumAsString() throws Exception { | ||
assertEquals("{\"value\":\"B\"}", MAPPER.writeValueAsString(new PoOverrideAsString())); | ||
} | ||
|
||
public void testOverrideEnumAsNumber() throws Exception { | ||
assertEquals("{\"value\":1}", MAPPER.writeValueAsString(new PoOverrideAsNumber())); | ||
} | ||
|
||
// for [databind#1543] | ||
public void testEnumAsNumber() throws Exception { | ||
assertEquals(String.valueOf(Color.GREEN.ordinal()), | ||
MAPPER.writeValueAsString(Color.GREEN)); | ||
assertEquals(String.format(aposToQuotes("{'color':'%s'}"), Color.GREEN.ordinal()), | ||
MAPPER.writeValueAsString(new ColorWrapper(Color.GREEN))); | ||
} | ||
} |