blob: 8c42087c7ee5d42cf928ffd8d9f434d5fe49df96 [file] [log] [blame]
/*
* Copyright 2017 The Kythe Authors. All rights reserved.
*
* 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 com.google.devtools.kythe.doc;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.html.types.SafeHtml;
import com.google.common.html.types.SafeUrl;
import com.google.common.html.types.SafeUrls;
import com.google.devtools.kythe.proto.MarkedSource;
import com.google.protobuf.TextFormat;
import java.io.BufferedReader;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.util.function.Function;
import junit.framework.TestCase;
public class MarkedSourceRendererTest extends TestCase {
private static final Path TEST_DATA_DIR =
Paths.get("kythe/javatests/com/google/devtools/kythe/doc/testdata/");
private static final Function<String, SafeUrl> makeLink =
inTicket -> SafeUrls.sanitize(inTicket.substring(inTicket.length() - 1));
public void testRendering() throws IOException {
MarkedSource.Builder input = MarkedSource.newBuilder();
try (BufferedReader reader =
Files.newBufferedReader(TEST_DATA_DIR.resolve("marked_source_renderer_test.textproto"))) {
TextFormat.merge(reader, input);
}
MarkedSource markedSource = input.build();
assertThat(
MarkedSourceRenderer.renderSimpleQualifiedName(makeLink, markedSource, false)
.getSafeHtmlString())
.isEqualTo("<span>namespace::(anonymous namespace)::ClassContainer</span>");
assertThat(
MarkedSourceRenderer.renderSimpleQualifiedName(makeLink, markedSource, true)
.getSafeHtmlString())
.isEqualTo("<span>namespace::(anonymous namespace)::ClassContainer::FunctionName</span>");
assertThat(
MarkedSourceRenderer.renderSimpleIdentifier(makeLink, markedSource).getSafeHtmlString())
.isEqualTo("<span>FunctionName</span>");
List<SafeHtml> params = MarkedSourceRenderer.renderSimpleParams(makeLink, markedSource);
assertThat(params.size()).isEqualTo(2);
assertThat(params.get(0).getSafeHtmlString()).isEqualTo("<span>param_name_one</span>");
assertThat(params.get(1).getSafeHtmlString()).isEqualTo("<span>param_name_two</span>");
}
public void testRenderingSignatures() throws IOException {
MarkedSource.Builder input = MarkedSource.newBuilder();
try (BufferedReader reader =
Files.newBufferedReader(TEST_DATA_DIR.resolve("marked_source_signature_test.textproto"))) {
TextFormat.merge(reader, input);
}
MarkedSource markedSource = input.build();
assertThat(MarkedSourceRenderer.renderSignature(makeLink, markedSource).getSafeHtmlString())
.isEqualTo(
"<span>void H(<a href=\"a\">String </a>message, <a href=\"b\">Throwable"
+ " </a>cause)</span>");
}
public void testRenderingLists() throws IOException {
MarkedSource markedSource =
MarkedSource.newBuilder()
.setKind(MarkedSource.Kind.PARAMETER)
.setAddFinalListToken(false)
.setPostChildText(", ")
.addChild(
MarkedSource.newBuilder().setKind(MarkedSource.Kind.IDENTIFIER).setPreText("a"))
.addChild(
MarkedSource.newBuilder().setKind(MarkedSource.Kind.IDENTIFIER).setPreText("b"))
.build();
assertThat(MarkedSourceRenderer.renderSignature(makeLink, markedSource).getSafeHtmlString())
.isEqualTo("<span>a, b</span>");
}
}