azul-css 0.0.7

Common datatypes used for styling applications using the Azul desktop GUI framework
Documentation
//! CSS Parser Robustness Tests
//!
//! Tests that the CSS parser handles invalid and edge-case CSS gracefully
//! without panicking and produces appropriate warnings/errors.

use azul_css::parser2::new_from_str;

#[test]
fn test_css_parser_missing_value() {
    let css = "div { color: }";
    let (result, _warnings) = new_from_str(css);
    // Should not panic, may produce warnings
    let _ = result;
}

#[test]
fn test_css_parser_missing_property_name() {
    let css = "div { : red }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_missing_colon() {
    let css = "div { color red }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_missing_closing_brace() {
    let css = "div { color: red";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_missing_selector() {
    let css = "{ color: red }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_empty_string() {
    let css = "";
    let (result, _warnings) = new_from_str(css);
    assert!(result.rules().next().is_none());
}

#[test]
fn test_css_parser_whitespace_only() {
    let css = "   \n\t  \r\n  ";
    let (result, _warnings) = new_from_str(css);
    assert!(result.rules().next().is_none());
}

#[test]
fn test_css_parser_comments_only() {
    let css = "/* This is a comment */ /* Another comment */";
    let (result, _warnings) = new_from_str(css);
    assert!(result.rules().next().is_none());
}

#[test]
fn test_css_parser_unclosed_comment() {
    let css = "div { color: red } /* unclosed comment";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_nested_braces() {
    let css = "div { color: red; { nested: value } }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_unicode_selector() {
    let css = ".日本語 { color: red }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_unicode_value() {
    let css = "div { content: '日本語テスト' }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_very_long_selector() {
    let selector = "div ".repeat(100);
    let css = format!("{} {{ color: red }}", selector.trim());
    let (result, _warnings) = new_from_str(&css);
    let _ = result;
}

#[test]
fn test_css_parser_very_long_value() {
    let value = "a".repeat(10000);
    let css = format!("div {{ content: '{}' }}", value);
    let (result, _warnings) = new_from_str(&css);
    let _ = result;
}

#[test]
fn test_css_parser_multiple_semicolons() {
    let css = "div { color: red;;; background: blue;; }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_invalid_unit() {
    let css = "div { width: 100xyz }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_negative_values() {
    let css = "div { margin: -10px; width: -50% }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_scientific_notation() {
    let css = "div { width: 1e10px }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_special_characters_in_class() {
    let css = ".class\\:with\\:colons { color: red }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_multiple_rules() {
    let css = r#"
        div { color: red }
        .class { color: blue }
        #id { color: green }
        div.class#id { color: yellow }
    "#;
    let (result, _warnings) = new_from_str(css);
    assert!(result.rules().count() >= 4);
}

#[test]
fn test_css_parser_pseudo_classes() {
    let css = r#"
        a:hover { color: red }
        a:active { color: blue }
        a:focus { color: green }
        a:visited { color: purple }
    "#;
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_pseudo_elements() {
    let css = r#"
        p::before { content: 'prefix' }
        p::after { content: 'suffix' }
        p::first-line { font-weight: bold }
        p::first-letter { font-size: 2em }
    "#;
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_combinators() {
    let css = r#"
        div > p { color: red }
        div + p { color: blue }
        div ~ p { color: green }
        div p { color: yellow }
    "#;
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_attribute_selectors() {
    let css = r#"
        [data-test] { color: red }
        [data-test="value"] { color: blue }
        [data-test^="prefix"] { color: green }
        [data-test$="suffix"] { color: yellow }
        [data-test*="contains"] { color: purple }
    "#;
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_shorthand_margin() {
    let css = r#"
        .one { margin: 10px }
        .two { margin: 10px 20px }
        .three { margin: 10px 20px 30px }
        .four { margin: 10px 20px 30px 40px }
    "#;
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_shorthand_padding() {
    let css = r#"
        .one { padding: 10px }
        .two { padding: 10px 20px }
        .three { padding: 10px 20px 30px }
        .four { padding: 10px 20px 30px 40px }
    "#;
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_color_formats() {
    let css = r#"
        .hex3 { color: #f00 }
        .hex6 { color: #ff0000 }
        .hex8 { color: #ff0000ff }
        .rgb { color: rgb(255, 0, 0) }
        .rgba { color: rgba(255, 0, 0, 0.5) }
        .named { color: red }
    "#;
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_calc_expression() {
    let css = "div { width: calc(100% - 20px) }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_multiple_selectors() {
    let css = "div, p, span, .class, #id { color: red }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_important() {
    let css = "div { color: red !important }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_media_query() {
    let css = "@media screen and (max-width: 600px) { div { color: red } }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_font_family_with_quotes() {
    let css = r#"div { font-family: "Helvetica Neue", Arial, sans-serif }"#;
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_background_shorthand() {
    let css = "div { background: #fff url('image.png') no-repeat center center }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_border_shorthand() {
    let css = "div { border: 1px solid red }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_flex_shorthand() {
    let css = r#"
        .flex1 { flex: 1 }
        .flex2 { flex: 1 1 auto }
        .flex3 { flex: none }
    "#;
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_transform() {
    let css = "div { transform: rotate(45deg) scale(1.5) translate(10px, 20px) }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_transition() {
    let css = "div { transition: all 0.3s ease-in-out }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_box_shadow() {
    let css = "div { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}

#[test]
fn test_css_parser_gradient() {
    let css = "div { background: linear-gradient(to right, red, blue) }";
    let (result, _warnings) = new_from_str(css);
    let _ = result;
}