diff --git a/kiauh/core/submodules/simple_config_parser/src/simple_config_parser/simple_config_parser.py b/kiauh/core/submodules/simple_config_parser/src/simple_config_parser/simple_config_parser.py index a4b2128..3275bf3 100644 --- a/kiauh/core/submodules/simple_config_parser/src/simple_config_parser/simple_config_parser.py +++ b/kiauh/core/submodules/simple_config_parser/src/simple_config_parser/simple_config_parser.py @@ -85,7 +85,7 @@ class DuplicateOptionError(Exception): class SimpleConfigParser: """A customized config parser targeted at handling Klipper style config files""" - _SECTION_RE = re.compile(r"\s*\[(\w+\s?[\w\-]+)]\s*([#;].*)?$") + _SECTION_RE = re.compile(r"\s*\[(\w+\s?.+)]\s*([#;].*)?$") _OPTION_RE = re.compile(r"^\s*(\w+)\s*[:=]\s*([^=:].*)\s*([#;].*)?$") _MLOPTION_RE = re.compile(r"^\s*(\w+)\s*[:=]\s*([#;].*)?$") _COMMENT_RE = re.compile(r"^\s*([#;].*)?$") diff --git a/kiauh/core/submodules/simple_config_parser/tests/features/line_parsing/data/case_parse_option.py b/kiauh/core/submodules/simple_config_parser/tests/features/line_parsing/data/case_parse_option.py index e4901f5..fbe9001 100644 --- a/kiauh/core/submodules/simple_config_parser/tests/features/line_parsing/data/case_parse_option.py +++ b/kiauh/core/submodules/simple_config_parser/tests/features/line_parsing/data/case_parse_option.py @@ -8,6 +8,11 @@ testcases = [ ("option: value\n", "option", "value"), ("option: value # inline comment", "option", "value"), ("option: value # inline comment\n", "option", "value"), + ( + "description: Helper: park toolhead used in PAUSE and CANCEL_PRINT", + "description", + "Helper: park toolhead used in PAUSE and CANCEL_PRINT", + ), ("description: homing!", "description", "homing!"), ("description: inline macro :-)", "description", "inline macro :-)"), ("path: %GCODES_DIR%", "path", "%GCODES_DIR%"), diff --git a/kiauh/core/submodules/simple_config_parser/tests/features/line_parsing/data/case_parse_section.py b/kiauh/core/submodules/simple_config_parser/tests/features/line_parsing/data/case_parse_section.py index ea1536d..bab0f69 100644 --- a/kiauh/core/submodules/simple_config_parser/tests/features/line_parsing/data/case_parse_section.py +++ b/kiauh/core/submodules/simple_config_parser/tests/features/line_parsing/data/case_parse_section.py @@ -3,4 +3,6 @@ testcases = [ ("[test_section two]", "test_section two"), ("[section1] # inline comment", "section1"), ("[section2] ; second comment", "section2"), + ("[include moonraker-obico-update.cfg]", "include moonraker-obico-update.cfg"), + ("[include moonraker_obico_macros.cfg]", "include moonraker_obico_macros.cfg"), ] diff --git a/kiauh/core/submodules/simple_config_parser/tests/features/line_type_detection/data/case_line_is_section.py b/kiauh/core/submodules/simple_config_parser/tests/features/line_type_detection/data/case_line_is_section.py index d2ef185..42b93d0 100644 --- a/kiauh/core/submodules/simple_config_parser/tests/features/line_type_detection/data/case_line_is_section.py +++ b/kiauh/core/submodules/simple_config_parser/tests/features/line_type_detection/data/case_line_is_section.py @@ -1,6 +1,11 @@ testcases = [ ("[example_section]", True), + ("[gcode_macro CANCEL_PRINT]", True), + ("[gcode_macro SET_PAUSE_NEXT_LAYER]", True), + ("[gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL]", True), ("[update_manager moonraker-obico]", True), + ("[include moonraker_obico_macros.cfg]", True), + ("[include moonraker-obico-update.cfg]", True), ("[example_section two]", True), ("not_a_valid_section", False), ("section: invalid", False),