/**
* Copyright © 2010-2014 Nokia
*
* 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.jsonschema2pojo.integration;
import static org.jsonschema2pojo.integration.util.CodeGenerationHelper.*;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
import java.io.File;
import java.io.IOException;
import org.junit.BeforeClass;
import org.junit.Test;
import com.thoughtworks.qdox.JavaDocBuilder;
import com.thoughtworks.qdox.model.JavaClass;
import com.thoughtworks.qdox.model.JavaField;
import com.thoughtworks.qdox.model.JavaMethod;
import com.thoughtworks.qdox.model.Type;
public class TitleIT {
private static JavaClass classWithTitle;
@BeforeClass
public static void generateClasses() throws ClassNotFoundException, IOException {
File outputDirectory = generate("/schema/title/title.json", "com.example");
File generatedJavaFile = new File(outputDirectory, "com/example/Title.java");
compile(outputDirectory);
JavaDocBuilder javaDocBuilder = new JavaDocBuilder();
javaDocBuilder.addSource(generatedJavaFile);
classWithTitle = javaDocBuilder.getClassByName("com.example.Title");
}
@Test
public void descriptionAppearsInClassJavadoc() throws IOException {
String javaDocComment = classWithTitle.getComment();
assertThat(javaDocComment, containsString("A title for this type"));
}
@Test
public void descriptionAppearsInFieldJavadoc() throws IOException {
JavaField javaField = classWithTitle.getFieldByName("title");
String javaDocComment = javaField.getComment();
assertThat(javaDocComment, containsString("A title for this property"));
}
@Test
public void descriptionAppearsInGetterJavadoc() throws IOException {
JavaMethod javaMethod = classWithTitle.getMethodBySignature("getTitle", new Type[] {});
String javaDocComment = javaMethod.getComment();
assertThat(javaDocComment, containsString("A title for this property"));
}
@Test
public void descriptionAppearsInSetterJavadoc() throws IOException {
JavaMethod javaMethod = classWithTitle.getMethodBySignature("setTitle", new Type[] { new Type("java.lang.String") });
String javaDocComment = javaMethod.getComment();
assertThat(javaDocComment, containsString("A title for this property"));
}
@Test
public void titleAppearsBeforeDescriptionInJavadoc() throws IOException {
JavaField javaField = classWithTitle.getFieldByName("titleAndDescription");
String javaDocComment = javaField.getComment();
assertThat(javaDocComment, containsString("A description for this property"));
assertThat(javaDocComment.indexOf("A title for this property"), is(lessThan(javaDocComment.indexOf("A description for this property"))));
}
}