blob: 3632bbb7a7bef7bf949becfbe84d508a3a2f1a86 [file] [log] [blame]
/*
* Copyright 2015 Google LLC
*
* 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.auto.value.processor;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableList;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** @author emcmanus@google.com (Éamonn McManus) */
@RunWith(JUnit4.class)
public class JavaScannerTest {
private static final ImmutableList<String> TOKENS =
ImmutableList.of(
" ",
"\"hello \\\" world\\n\"",
"'a'",
" ",
"'\\t'",
" ",
"`com.google.Foo`",
" ",
"\n ",
"/* comment * comment \" whatever\n comment continued */",
" ",
"t",
"h",
"i",
"n",
"g",
" ",
"t",
"h",
"i",
"n",
"g",
" ",
"// line comment",
"\n",
"/*/ tricky comment */",
"\n");
/**
* Tests basic scanner functionality. The test concatenates the tokens in {@link #TOKENS} and then
* retokenizes that string, checking that the same list of tokens is produced.
*/
@Test
public void testScanner() {
String input = Joiner.on("").join(TOKENS);
ImmutableList.Builder<String> tokensBuilder = ImmutableList.builder();
JavaScanner tokenizer = new JavaScanner(input);
int end;
for (int i = 0; i < input.length(); i = end) {
end = tokenizer.tokenEnd(i);
tokensBuilder.add(input.substring(i, end));
}
assertThat(tokensBuilder.build()).containsExactlyElementsIn(TOKENS).inOrder();
}
}