/
githubmirror
/
RxJava
Обзор
Документация
Войти
/
githubmirror
/
RxJava
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
src/test/java/io/reactivex/rxjava4/validators/CheckJavadocFindUnescapedAngleBracketsTest.java
140 строк
5 KB
David Karnok
4.x: Convert from JUnit 4 to JUnit 6 (#8202)
30 июн 2026, 12:01
Не верифицирован
30 июн 2026, 12:01
531388f
Код
Авторство
О чём код?
/* * Copyright (c) 2016-present, RxJava Contributors. * * 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 io.reactivex.rxjava4.validators; import java.io.*; import java.util.*; import org.junit.jupiter.api.Test; import io.reactivex.rxjava4.core.RxJavaTest; import io.reactivex.rxjava4.testsupport.TestHelper; public class CheckJavadocFindUnescapedAngleBracketsTest extends RxJavaTest { @Test public void find() throws Exception { File base = TestHelper.findSource("Flowable"); if (base == null) { return; } base = base.getParentFile().getParentFile(); Queue<File[]> files = new ArrayDeque<>(); files.offer(base.listFiles()); StringBuilder b = new StringBuilder(); int count = 0; while (!files.isEmpty()) { for (File file : files.poll()) { if (file.getName().endsWith(".java")) { String s = readFile(file); String fn = file.toString().substring(base.toString().length()); fn = fn.replace("\\", "."); fn = fn.replace("//", "."); fn = fn.replace(".java", ""); fn = "io.reactivex" + fn; int j = 0; for (;;) { int idx = s.indexOf("<code>", j); if (idx < 0) { break; } int jdx = s.indexOf("</code>", idx + 6); int k = idx + 6; for (;;) { int kdx = s.indexOf('>', k); if (kdx < 0) { break; } if (kdx < jdx) { b.append("at ") .append(fn) .append(".gt(") .append(file.getName()).append(":") .append(countLine(s, kdx)) .append(")\r\n"); count++; } else { break; } k = kdx + 1; } k = idx + 6; for (;;) { int kdx = s.indexOf('<', k); if (kdx < 0) { break; } if (kdx < jdx) { b.append("at ") .append(fn) .append(".lt(") .append(file.getName()).append(":") .append(countLine(s, kdx)) .append(")\r\n"); count++; } else { break; } k = kdx + 1; } j = jdx + 7; } } } } if (!b.isEmpty()) { System.err.println("Should escape < and > in <code> blocks! " + count); System.err.println(b); throw new Exception("Should escape < and > in <code> blocks! " + count + "\r\n" + b); } } static int countLine(String s, int kdx) { int c = 1; for (int i = kdx; i >= 0; i--) { if (s.charAt(i) == '\n') { c++; } } return c; } static String readFile(File f) throws IOException { StringBuilder b = new StringBuilder((int)f.length()); try (BufferedReader in = new BufferedReader(new FileReader(f))) { String line; while ((line = in.readLine()) != null) { b.append(line).append("\n"); } } return b.toString(); } }