/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use tnipv_lint::lints::preamble::Author; use tnipv_lint::reporters::Text; use tnipv_lint::Linter; #[tokio::test] async fn unicode_invalid() { let src = r#"--- header: Bánana ( --- hello world"#; let reports = Linter::>::default() .clear_lints() .deny("preamble-author", Author("header")) .check_slice(None, src) .run() .await .unwrap() .into_inner(); assert_eq!( reports, r#"error[preamble-author]: authors in the preamble must match the expected format | 2 | header: Bánana ( | ^^^^^^^^^ unrecognized author | = help: Try `Random J. User (@username) ` for an author with a GitHub username plus email. = help: Try `Random J. User (@username)` for an author with a GitHub username. = help: Try `Random J. User ` for an author with an email. = help: Try `Random J. User` for an author without contact information. error[preamble-author]: preamble header `header` must contain at least one GitHub username | 2 | header: Bánana ( | "#, ); } #[tokio::test] async fn one_invalid() { let src = r#"--- header: Foo ( --- hello world"#; let reports = Linter::>::default() .clear_lints() .deny("preamble-author", Author("header")) .check_slice(None, src) .run() .await .unwrap() .into_inner(); assert_eq!( reports, r#"error[preamble-author]: authors in the preamble must match the expected format | 2 | header: Foo ( | ^^^^^^ unrecognized author | = help: Try `Random J. User (@username) ` for an author with a GitHub username plus email. = help: Try `Random J. User (@username)` for an author with a GitHub username. = help: Try `Random J. User ` for an author with an email. = help: Try `Random J. User` for an author without contact information. error[preamble-author]: preamble header `header` must contain at least one GitHub username | 2 | header: Foo ( | "#, ); } #[tokio::test] async fn invalid_last() { let src = r#"--- header: User (@user), Foo ( --- hello world"#; let reports = Linter::>::default() .clear_lints() .deny("preamble-author", Author("header")) .check_slice(None, src) .run() .await .unwrap() .into_inner(); assert_eq!( reports, r#"error[preamble-author]: authors in the preamble must match the expected format | 2 | header: User (@user), Foo ( | ^^^^^^ unrecognized author | = help: Try `Random J. User (@username) ` for an author with a GitHub username plus email. = help: Try `Random J. User (@username)` for an author with a GitHub username. = help: Try `Random J. User ` for an author with an email. = help: Try `Random J. User` for an author without contact information. "#, ); } #[tokio::test] async fn invalid_first() { let src = r#"--- header: Foo (, User (@user) --- hello world"#; let reports = Linter::>::default() .clear_lints() .deny("preamble-author", Author("header")) .check_slice(None, src) .run() .await .unwrap() .into_inner(); assert_eq!( reports, r#"error[preamble-author]: authors in the preamble must match the expected format | 2 | header: Foo (, User (@user) | ^^^^^^ unrecognized author | = help: Try `Random J. User (@username) ` for an author with a GitHub username plus email. = help: Try `Random J. User (@username)` for an author with a GitHub username. = help: Try `Random J. User ` for an author with an email. = help: Try `Random J. User` for an author without contact information. "#, ); } #[tokio::test] async fn only_email() { let src = r#"--- header: Foo --- hello world"#; let reports = Linter::>::default() .clear_lints() .deny("preamble-author", Author("header")) .check_slice(None, src) .run() .await .unwrap() .into_inner(); assert_eq!( reports, r#"error[preamble-author]: preamble header `header` must contain at least one GitHub username | 2 | header: Foo | "#, ); } #[tokio::test] async fn valid() { let src = r#"--- header: Foo , Bar (@bar), Random J. User --- hello world"#; let reports = Linter::>::default() .clear_lints() .deny("preamble-author", Author("header")) .check_slice(None, src) .run() .await .unwrap() .into_inner(); assert_eq!(reports, ""); } #[tokio::test] async fn valid_dual() { let src = r#"--- header: Foo (@Foo) , Bar (@bar), Random J. User --- hello world"#; let reports = Linter::>::default() .clear_lints() .deny("preamble-author", Author("header")) .check_slice(None, src) .run() .await .unwrap() .into_inner(); assert_eq!(reports, ""); }