blob: 65626aa4b234da8fadbec0eab4b77cd1fb374463 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.johnzon.jsonb;
import org.apache.johnzon.jsonb.model.Holder;
import org.apache.johnzon.jsonb.test.JsonbRule;
import org.junit.Rule;
import org.junit.Test;
import jakarta.json.bind.Jsonb;
import jakarta.json.bind.JsonbException;
import jakarta.json.bind.annotation.JsonbProperty;
import jakarta.json.bind.annotation.JsonbTransient;
import jakarta.json.bind.spi.JsonbProvider;
import static org.junit.Assert.assertEquals;
public class JsonbTransientTest {
@Rule
public final JsonbRule jsonb = new JsonbRule();
@Test
public void roundtrip() {
final Jsonb jsonb = JsonbProvider.provider().create().build();
final Book book = jsonb.fromJson("{\"_name\": \"test\", \"id\":123}", Book.class);
assertEquals("test", book.getName());
assertEquals(0, book.getId());
book.id = 123;
assertEquals("{\"_name\":\"test\"}", jsonb.toJson(book));
}
@Test(expected = JsonbException.class)
public void illegalConfig() {
jsonb.toJson(new TransientGetterWithFieldProperty());
}
public class TransientGetterWithFieldProperty implements Holder<String> {
@JsonbProperty("instance")
private String instance;
@Override
@JsonbTransient
public String getInstance() {
return instance;
}
@Override
public void setInstance(String instance) {
this.instance = instance;
}
}
public static class Book {
@JsonbTransient
private long id;
@JsonbProperty("_name")
private String name;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
}