blob: 7f1978e59a3f3efbf232271b0be94b18d9b243a9 [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.juneau.transforms;
import static org.apache.juneau.internal.StringUtils.*;
import org.apache.juneau.*;
import org.apache.juneau.transform.*;
import org.junit.*;
/**
* Tests designed to serialize and parse objects to make sure we end up
* with the same objects for all serializers and parsers.
*/
public abstract class OneWayStringSwapTest<T> {
private final String label;
private final T o;
private final StringSwap<T> ss;
private final String expected;
private final BeanSession bs;
public OneWayStringSwapTest(String label, T o, StringSwap<T> ss, String expected, BeanSession bs) throws Exception {
this.label = label;
this.o = o;
this.ss = ss;
this.expected = expected;
this.bs = bs;
}
@Test
public void testSwap() throws Exception {
String s = (String)ss.swap(bs, o);
if (! isEquals(expected, s)) {
if (expected.isEmpty()) {
if (! label.startsWith("[]"))
System.err.println(label.substring(0, label.indexOf(']')+1) + " "+s);
Assert.fail();
} else {
fail("Test [{0} swap] failed. Expected=[{1}], Actual=[{2}]", label, expected, s);
}
}
}
private void fail(String msg, Object...args) {
String s = format(msg, args);
System.err.println(s);
Assert.fail(s);
}
}