Skip to content
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

chore(ci): improve rules_check task #3165

Merged
merged 4 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion crates/biome_json_parser/src/parser.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::token_source::JsonTokenSource;
use biome_json_syntax::JsonSyntaxKind;
use biome_json_syntax::{JsonFileSource, JsonSyntaxKind};
use biome_parser::diagnostic::merge_diagnostics;
use biome_parser::event::Event;
use biome_parser::prelude::*;
Expand Down Expand Up @@ -30,6 +30,19 @@ impl JsonParserOptions {
}
}

impl From<&JsonFileSource> for JsonParserOptions {
fn from(file_source: &JsonFileSource) -> Self {
let options = Self::default();
if file_source.allow_comments() {
options.with_allow_comments();
}
if file_source.allow_trailing_commas() {
options.with_allow_trailing_commas();
}
options
}
}

impl<'source> JsonParser<'source> {
pub fn new(source: &'source str, options: JsonParserOptions) -> Self {
Self {
Expand Down
105 changes: 32 additions & 73 deletions xtask/rules_check/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ use biome_css_parser::CssParserOptions;
use biome_css_syntax::CssLanguage;
use biome_diagnostics::{Diagnostic, DiagnosticExt, PrintDiagnostic};
use biome_js_parser::JsParserOptions;
use biome_js_syntax::{EmbeddingKind, JsFileSource, JsLanguage, ModuleKind};
use biome_js_syntax::{EmbeddingKind, JsFileSource, JsLanguage};
use biome_json_parser::JsonParserOptions;
use biome_json_syntax::JsonLanguage;
use biome_service::settings::WorkspaceSettings;
use biome_service::workspace::DocumentFileSource;
use pulldown_cmark::{CodeBlockKind, Event, Parser, Tag, TagEnd};
use std::collections::BTreeMap;
use std::fmt::Write;
Expand Down Expand Up @@ -105,20 +106,18 @@ pub fn check_rules() -> anyhow::Result<()> {

Ok(())
}

enum BlockType {
Js(JsFileSource),
Json,
Css,
Foreign(String),
}

struct CodeBlockTest {
block_type: BlockType,
tag: String,
expect_diagnostic: bool,
ignore: bool,
}

impl CodeBlockTest {
fn document_file_source(&self) -> DocumentFileSource {
DocumentFileSource::from_extension(&self.tag)
}
}

impl FromStr for CodeBlockTest {
type Err = anyhow::Error;

Expand All @@ -131,56 +130,18 @@ impl FromStr for CodeBlockTest {
.filter(|token| !token.is_empty());

let mut test = CodeBlockTest {
block_type: BlockType::Foreign(String::new()),
tag: String::new(),
expect_diagnostic: false,
ignore: false,
};

for token in tokens {
match token {
// Determine the language, using the same list of extensions as `compute_source_type_from_path_or_extension`
"cjs" => {
test.block_type = BlockType::Js(
JsFileSource::js_module().with_module_kind(ModuleKind::Script),
);
}
"js" | "mjs" | "jsx" => {
test.block_type = BlockType::Js(JsFileSource::jsx());
}
"ts" | "mts" | "cts" => {
test.block_type = BlockType::Js(JsFileSource::ts());
}
"tsx" => {
test.block_type = BlockType::Js(JsFileSource::tsx());
}
"svelte" => {
test.block_type = BlockType::Js(JsFileSource::svelte());
}
"astro" => {
test.block_type = BlockType::Js(JsFileSource::astro());
}
"vue" => {
test.block_type = BlockType::Js(JsFileSource::vue());
}
"json" => {
test.block_type = BlockType::Json;
}
"css" => {
test.block_type = BlockType::Css;
}
// Other attributes
"expect_diagnostic" => {
test.expect_diagnostic = true;
}
"ignore" => {
test.ignore = true;
}
// A catch-all to regard unknown tokens as foreign languages,
// and do not run tests on these code blocks.
_ => {
test.block_type = BlockType::Foreign(token.into());
test.ignore = true;
}
"expect_diagnostic" => test.expect_diagnostic = true,
"ignore" => test.ignore = true,
// Regard as language tags, last one wins
_ => test.tag = token.to_string(),
}
}

Expand All @@ -197,7 +158,7 @@ fn assert_lint(
test: &CodeBlockTest,
code: &str,
) -> anyhow::Result<()> {
let file = "rule-doc-code-block";
let file_path = format!("code-block.{}", test.tag);

let mut diagnostic_count = 0;
let mut all_diagnostics = vec![];
Expand Down Expand Up @@ -242,10 +203,10 @@ fn assert_lint(
let mut settings = WorkspaceSettings::default();
let key = settings.insert_project(PathBuf::new());
settings.register_current_project(key);
match &test.block_type {
BlockType::Js(source_type) => {
match test.document_file_source() {
DocumentFileSource::Js(file_source) => {
// Temporary support for astro, svelte and vue code blocks
let (code, source_type) = match source_type.as_embedding_kind() {
let (code, file_source) = match file_source.as_embedding_kind() {
EmbeddingKind::Astro => (
biome_service::file_handlers::AstroFileHandler::input(code),
JsFileSource::ts(),
Expand All @@ -258,14 +219,14 @@ fn assert_lint(
biome_service::file_handlers::VueFileHandler::input(code),
biome_service::file_handlers::VueFileHandler::file_source(code),
),
_ => (code, *source_type),
_ => (code, file_source),
};

let parse = biome_js_parser::parse(code, source_type, JsParserOptions::default());
let parse = biome_js_parser::parse(code, file_source, JsParserOptions::default());

if parse.has_errors() {
for diag in parse.into_diagnostics() {
let error = diag.with_file_path(file).with_file_source_code(code);
let error = diag.with_file_path(&file_path).with_file_source_code(code);
write_diagnostic(code, error)?;
}
} else {
Expand All @@ -279,7 +240,7 @@ fn assert_lint(

let mut options = AnalyzerOptions::default();
options.configuration.jsx_runtime = Some(JsxRuntime::default());
biome_js_analyze::analyze(&root, filter, &options, source_type, None, |signal| {
biome_js_analyze::analyze(&root, filter, &options, file_source, None, |signal| {
if let Some(mut diag) = signal.diagnostic() {
let category = diag.category().expect("linter diagnostic has no code");
let severity = settings.get_current_settings().expect("project").get_severity_from_rule_code(category).expect(
Expand All @@ -294,7 +255,7 @@ fn assert_lint(

let error = diag
.with_severity(severity)
.with_file_path(file)
.with_file_path(&file_path)
.with_file_source_code(code);
let res = write_diagnostic(code, error);

Expand All @@ -309,12 +270,12 @@ fn assert_lint(
});
}
}
BlockType::Json => {
let parse = biome_json_parser::parse_json(code, JsonParserOptions::default());
DocumentFileSource::Json(file_source) => {
let parse = biome_json_parser::parse_json(code, JsonParserOptions::from(&file_source));

if parse.has_errors() {
for diag in parse.into_diagnostics() {
let error = diag.with_file_path(file).with_file_source_code(code);
let error = diag.with_file_path(&file_path).with_file_source_code(code);
write_diagnostic(code, error)?;
}
} else {
Expand Down Expand Up @@ -342,7 +303,7 @@ fn assert_lint(

let error = diag
.with_severity(severity)
.with_file_path(file)
.with_file_path(&file_path)
.with_file_source_code(code);
let res = write_diagnostic(code, error);

Expand All @@ -357,12 +318,12 @@ fn assert_lint(
});
}
}
BlockType::Css => {
DocumentFileSource::Css(..) => {
let parse = biome_css_parser::parse_css(code, CssParserOptions::default());

if parse.has_errors() {
for diag in parse.into_diagnostics() {
let error = diag.with_file_path(file).with_file_source_code(code);
let error = diag.with_file_path(&file_path).with_file_source_code(code);
write_diagnostic(code, error)?;
}
} else {
Expand Down Expand Up @@ -390,7 +351,7 @@ fn assert_lint(

let error = diag
.with_severity(severity)
.with_file_path(file)
.with_file_path(&file_path)
.with_file_source_code(code);
let res = write_diagnostic(code, error);

Expand All @@ -405,10 +366,8 @@ fn assert_lint(
});
}
}
// Foreign code blocks should be already ignored by tests
BlockType::Foreign(block) => {
bail!("Unrecognised block type {}", &block)
}
// Unknown code blocks should be ignored by tests
DocumentFileSource::Unknown => {}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should be more forgiving here, in case we want to add some foreign code blocks (like shell) for illustration purpose.

}

if test.expect_diagnostic {
Expand Down
Loading