-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix tests, dependency updates #3361
Conversation
Caution Review failedThe pull request is closed. WalkthroughВ данном запросе на изменение были обновлены версии плагинов и зависимостей в файле Changes
Possibly related PRs
Suggested reviewers
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
build.gradle.kts (1)
221-221
: Улучшение конфигурации путей сборкиЗамена жестко закодированных путей на layout.buildDirectory улучшает поддержку проекта и соответствует лучшим практикам Gradle.
Рекомендуется проверить остальные места в скрипте на наличие жестко закодированных путей для последующей замены.
Also applies to: 241-241, 246-246, 288-288
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
⛔ Files ignored due to path filters (2)
src/main/resources/com/github/_1c_syntax/bsl/languageserver/configuration/parameters-schema.json
is excluded by!**/*.json
src/main/resources/com/github/_1c_syntax/bsl/languageserver/configuration/schema.json
is excluded by!**/*.json
📒 Files selected for processing (4)
build.gradle.kts
(8 hunks)docs/diagnostics/ReservedParameterNames.md
(1 hunks)docs/en/diagnostics/DoubleNegatives.md
(1 hunks)src/test/java/com/github/_1c_syntax/bsl/languageserver/diagnostics/ReservedParameterNamesDiagnosticTest.java
(1 hunks)
✅ Files skipped from review due to trivial changes (3)
- docs/diagnostics/ReservedParameterNames.md
- docs/en/diagnostics/DoubleNegatives.md
- src/test/java/com/github/_1c_syntax/bsl/languageserver/diagnostics/ReservedParameterNamesDiagnosticTest.java
🔇 Additional comments (3)
build.gradle.kts (3)
62-62
: LGTM: Обновление версии Language Tool
Обновление languageToolVersion до 6.5 является минорным и безопасным изменением.
21-21
: Проверьте совместимость обновления Spring Boot
Обновление Spring Boot с версии 3.2.5 до 3.3.5 может содержать критические изменения. Рекомендуется:
- Ознакомиться с журналом изменений Spring Boot 3.3
- Проверить совместимость с зависимыми библиотеками
110-111
: Обновление версий Commons библиотек
Обновления commons-io и commons-lang3 являются минорными и улучшают стабильность проекта. Рекомендуется проверить использование новых возможностей этих библиотек.
✅ Verification successful
Обновление библиотек Commons выполнено корректно
Анализ показывает, что библиотеки commons-io и commons-lang3 используются правильно и безопасно:
- FileUtils в основном используется для операций с файлами в тестах
- StringUtils, SystemUtils и другие утилиты используются для базовых операций
- Не обнаружено использования устаревших или удаленных методов
- Все импорты корректны и соответствуют новым версиям
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Поиск использования устаревших методов Commons библиотек
rg "org\.apache\.commons\.(?:io|lang3)\.(?:deprecated|legacy)" -g "*.java"
Length of output: 76
Script:
#!/bin/bash
# Search for Commons IO and Lang3 usage patterns
rg "(?:org\.apache\.commons\.io|org\.apache\.commons\.lang3)\.[A-Za-z]+" -g "*.java" -A 2
Length of output: 20155
Script:
#!/bin/bash
# Search for Commons IO imports
rg "^import.*(?:commons\.io|commons\.lang3)" -g "*.java"
Length of output: 7306
Script:
#!/bin/bash
# Check if there are any test files using these libraries
fd -e java -e kt --full-path "test" --exec rg "(?:commons\.io|commons\.lang3)" {}
Length of output: 1564
Qodana for JVM76 new problems were found
💡 Qodana analysis was run in the pull request mode: only the changed files were checked Detected 104 dependenciesThird-party software listThis page lists the third-party software dependencies used in bsl-language-server
Contact Qodana teamContact us at [email protected]
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
src/test/java/com/github/_1c_syntax/bsl/languageserver/diagnostics/DiagnosticInfosTest.java (1)
78-80
: Улучшение читаемости и информативности теста!Новая реализация с использованием
assertThat().allSatisfy()
имеет несколько преимуществ:
- Более понятная структура утверждения
- В случае ошибки будет точно указано, какой именно диагностический элемент не прошел проверку
- Меньше вложенности в коде
Для еще большей информативности можно добавить сообщение об ошибке:
assertThat(diagnosticInfos).allSatisfy((key, diagnosticInfo) -> { - assertThat(diagnosticInfo.getDescription()).isNotEmpty(); + assertThat(diagnosticInfo.getDescription()) + .as("Diagnostic '%s' must have description", key) + .isNotEmpty(); });
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
src/test/java/com/github/_1c_syntax/bsl/languageserver/diagnostics/DiagnosticInfosTest.java
(1 hunks)
Quality Gate passedIssues Measures |
Описание
Связанные задачи
Closes
Чеклист
Общие
gradlew precommit
)Для диагностик
Дополнительно