From 061898811be6c1c3f74c7ddf76e4a79becab6a94 Mon Sep 17 00:00:00 2001 From: Peter Schuebl Date: Tue, 5 Dec 2023 16:27:59 +0100 Subject: [PATCH 1/8] #30 migrate to gradle build --- .editorconfig | 512 ++++++++++++++++++ .github/workflows/gradle-build.yml | 28 + .github/workflows/maven.yml | 27 - .../workflows/publish-to-github-packages.yml | 33 ++ .gitignore | 4 +- gradle.properties | 5 + pom.xml | 283 ---------- .../org/natty/generated/DateLexer.g | 0 .../org/natty/generated/DateParser.g | 0 .../org/natty/generated/DateWalker.g | 0 .../org/natty/generated/TreeRewrite.g | 0 .../natty/generated/imports/NumericRules.g | 0 12 files changed, 580 insertions(+), 312 deletions(-) create mode 100644 .editorconfig create mode 100644 .github/workflows/gradle-build.yml delete mode 100644 .github/workflows/maven.yml create mode 100644 .github/workflows/publish-to-github-packages.yml create mode 100644 gradle.properties delete mode 100644 pom.xml rename src/main/{antlr3 => antlr}/org/natty/generated/DateLexer.g (100%) rename src/main/{antlr3 => antlr}/org/natty/generated/DateParser.g (100%) rename src/main/{antlr3 => antlr}/org/natty/generated/DateWalker.g (100%) rename src/main/{antlr3 => antlr}/org/natty/generated/TreeRewrite.g (100%) rename src/main/{antlr3 => antlr}/org/natty/generated/imports/NumericRules.g (100%) diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..01bf598c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,512 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = false +max_line_length = 120 +tab_width = 4 +ij_continuation_indent_size = 8 +ij_formatter_off_tag = @formatter:off +ij_formatter_on_tag = @formatter:on +ij_formatter_tags_enabled = true +ij_smart_tabs = false +ij_visual_guides = +ij_wrap_on_typing = false + +[*.java] +ij_java_align_consecutive_assignments = false +ij_java_align_consecutive_variable_declarations = false +ij_java_align_group_field_declarations = false +ij_java_align_multiline_annotation_parameters = false +ij_java_align_multiline_array_initializer_expression = false +ij_java_align_multiline_assignment = false +ij_java_align_multiline_binary_operation = false +ij_java_align_multiline_chained_methods = false +ij_java_align_multiline_deconstruction_list_components = true +ij_java_align_multiline_extends_list = false +ij_java_align_multiline_for = true +ij_java_align_multiline_method_parentheses = false +ij_java_align_multiline_parameters = true +ij_java_align_multiline_parameters_in_calls = false +ij_java_align_multiline_parenthesized_expression = false +ij_java_align_multiline_records = true +ij_java_align_multiline_resources = true +ij_java_align_multiline_ternary_operation = false +ij_java_align_multiline_text_blocks = false +ij_java_align_multiline_throws_list = false +ij_java_align_subsequent_simple_methods = false +ij_java_align_throws_keyword = false +ij_java_align_types_in_multi_catch = true +ij_java_annotation_parameter_wrap = off +ij_java_array_initializer_new_line_after_left_brace = false +ij_java_array_initializer_right_brace_on_new_line = false +ij_java_array_initializer_wrap = off +ij_java_assert_statement_colon_on_next_line = false +ij_java_assert_statement_wrap = off +ij_java_assignment_wrap = off +ij_java_binary_operation_sign_on_next_line = false +ij_java_binary_operation_wrap = off +ij_java_blank_lines_after_anonymous_class_header = 0 +ij_java_blank_lines_after_class_header = 0 +ij_java_blank_lines_after_imports = 1 +ij_java_blank_lines_after_package = 1 +ij_java_blank_lines_around_class = 1 +ij_java_blank_lines_around_field = 0 +ij_java_blank_lines_around_field_in_interface = 0 +ij_java_blank_lines_around_initializer = 1 +ij_java_blank_lines_around_method = 1 +ij_java_blank_lines_around_method_in_interface = 1 +ij_java_blank_lines_before_class_end = 0 +ij_java_blank_lines_before_imports = 1 +ij_java_blank_lines_before_method_body = 0 +ij_java_blank_lines_before_package = 0 +ij_java_block_brace_style = end_of_line +ij_java_block_comment_add_space = false +ij_java_block_comment_at_first_column = true +ij_java_builder_methods = +ij_java_call_parameters_new_line_after_left_paren = false +ij_java_call_parameters_right_paren_on_new_line = false +ij_java_call_parameters_wrap = off +ij_java_case_statement_on_separate_line = true +ij_java_catch_on_new_line = false +ij_java_class_annotation_wrap = split_into_lines +ij_java_class_brace_style = end_of_line +ij_java_class_count_to_use_import_on_demand = 5 +ij_java_class_names_in_javadoc = 1 +ij_java_deconstruction_list_wrap = normal +ij_java_do_not_indent_top_level_class_members = false +ij_java_do_not_wrap_after_single_annotation = false +ij_java_do_not_wrap_after_single_annotation_in_parameter = false +ij_java_do_while_brace_force = never +ij_java_doc_add_blank_line_after_description = true +ij_java_doc_add_blank_line_after_param_comments = false +ij_java_doc_add_blank_line_after_return = false +ij_java_doc_add_p_tag_on_empty_lines = true +ij_java_doc_align_exception_comments = true +ij_java_doc_align_param_comments = true +ij_java_doc_do_not_wrap_if_one_line = false +ij_java_doc_enable_formatting = true +ij_java_doc_enable_leading_asterisks = true +ij_java_doc_indent_on_continuation = false +ij_java_doc_keep_empty_lines = true +ij_java_doc_keep_empty_parameter_tag = true +ij_java_doc_keep_empty_return_tag = true +ij_java_doc_keep_empty_throws_tag = true +ij_java_doc_keep_invalid_tags = true +ij_java_doc_param_description_on_new_line = false +ij_java_doc_preserve_line_breaks = false +ij_java_doc_use_throws_not_exception_tag = true +ij_java_else_on_new_line = false +ij_java_entity_dd_prefix = +ij_java_entity_dd_suffix = EJB +ij_java_entity_eb_prefix = +ij_java_entity_eb_suffix = Bean +ij_java_entity_hi_prefix = +ij_java_entity_hi_suffix = Home +ij_java_entity_lhi_prefix = Local +ij_java_entity_lhi_suffix = Home +ij_java_entity_li_prefix = Local +ij_java_entity_li_suffix = +ij_java_entity_pk_class = java.lang.String +ij_java_entity_ri_prefix = +ij_java_entity_ri_suffix = +ij_java_entity_vo_prefix = +ij_java_entity_vo_suffix = VO +ij_java_enum_constants_wrap = off +ij_java_extends_keyword_wrap = off +ij_java_extends_list_wrap = off +ij_java_field_annotation_wrap = split_into_lines +ij_java_field_name_prefix = +ij_java_field_name_suffix = +ij_java_filter_class_prefix = +ij_java_filter_class_suffix = +ij_java_filter_dd_prefix = +ij_java_filter_dd_suffix = +ij_java_finally_on_new_line = false +ij_java_for_brace_force = never +ij_java_for_statement_new_line_after_left_paren = false +ij_java_for_statement_right_paren_on_new_line = false +ij_java_for_statement_wrap = off +ij_java_generate_final_locals = false +ij_java_generate_final_parameters = false +ij_java_if_brace_force = never +ij_java_imports_layout = *,|,javax.**,java.**,|,$* +ij_java_indent_case_from_switch = true +ij_java_insert_inner_class_imports = false +ij_java_insert_override_annotation = true +ij_java_keep_blank_lines_before_right_brace = 2 +ij_java_keep_blank_lines_between_package_declaration_and_header = 2 +ij_java_keep_blank_lines_in_code = 2 +ij_java_keep_blank_lines_in_declarations = 2 +ij_java_keep_builder_methods_indents = false +ij_java_keep_control_statement_in_one_line = true +ij_java_keep_first_column_comment = true +ij_java_keep_indents_on_empty_lines = false +ij_java_keep_line_breaks = true +ij_java_keep_multiple_expressions_in_one_line = false +ij_java_keep_simple_blocks_in_one_line = false +ij_java_keep_simple_classes_in_one_line = false +ij_java_keep_simple_lambdas_in_one_line = false +ij_java_keep_simple_methods_in_one_line = false +ij_java_label_indent_absolute = false +ij_java_label_indent_size = 0 +ij_java_lambda_brace_style = end_of_line +ij_java_layout_static_imports_separately = true +ij_java_line_comment_add_space = false +ij_java_line_comment_add_space_on_reformat = false +ij_java_line_comment_at_first_column = true +ij_java_listener_class_prefix = +ij_java_listener_class_suffix = +ij_java_local_variable_name_prefix = +ij_java_local_variable_name_suffix = +ij_java_message_dd_prefix = +ij_java_message_dd_suffix = EJB +ij_java_message_eb_prefix = +ij_java_message_eb_suffix = Bean +ij_java_method_annotation_wrap = split_into_lines +ij_java_method_brace_style = end_of_line +ij_java_method_call_chain_wrap = off +ij_java_method_parameters_new_line_after_left_paren = false +ij_java_method_parameters_right_paren_on_new_line = false +ij_java_method_parameters_wrap = off +ij_java_modifier_list_wrap = false +ij_java_multi_catch_types_wrap = normal +ij_java_names_count_to_use_import_on_demand = 3 +ij_java_new_line_after_lparen_in_annotation = false +ij_java_new_line_after_lparen_in_deconstruction_pattern = true +ij_java_new_line_after_lparen_in_record_header = false +ij_java_packages_to_use_import_on_demand = java.awt.*,javax.swing.* +ij_java_parameter_annotation_wrap = off +ij_java_parameter_name_prefix = +ij_java_parameter_name_suffix = +ij_java_parentheses_expression_new_line_after_left_paren = false +ij_java_parentheses_expression_right_paren_on_new_line = false +ij_java_place_assignment_sign_on_next_line = false +ij_java_prefer_longer_names = true +ij_java_prefer_parameters_wrap = false +ij_java_record_components_wrap = normal +ij_java_repeat_synchronized = true +ij_java_replace_instanceof_and_cast = false +ij_java_replace_null_check = true +ij_java_replace_sum_lambda_with_method_ref = true +ij_java_resource_list_new_line_after_left_paren = false +ij_java_resource_list_right_paren_on_new_line = false +ij_java_resource_list_wrap = off +ij_java_rparen_on_new_line_in_annotation = false +ij_java_rparen_on_new_line_in_deconstruction_pattern = true +ij_java_rparen_on_new_line_in_record_header = false +ij_java_servlet_class_prefix = +ij_java_servlet_class_suffix = +ij_java_servlet_dd_prefix = +ij_java_servlet_dd_suffix = +ij_java_session_dd_prefix = +ij_java_session_dd_suffix = EJB +ij_java_session_eb_prefix = +ij_java_session_eb_suffix = Bean +ij_java_session_hi_prefix = +ij_java_session_hi_suffix = Home +ij_java_session_lhi_prefix = Local +ij_java_session_lhi_suffix = Home +ij_java_session_li_prefix = Local +ij_java_session_li_suffix = +ij_java_session_ri_prefix = +ij_java_session_ri_suffix = +ij_java_session_si_prefix = +ij_java_session_si_suffix = Service +ij_java_space_after_closing_angle_bracket_in_type_argument = false +ij_java_space_after_colon = true +ij_java_space_after_comma = true +ij_java_space_after_comma_in_type_arguments = true +ij_java_space_after_for_semicolon = true +ij_java_space_after_quest = true +ij_java_space_after_type_cast = true +ij_java_space_before_annotation_array_initializer_left_brace = false +ij_java_space_before_annotation_parameter_list = false +ij_java_space_before_array_initializer_left_brace = false +ij_java_space_before_catch_keyword = true +ij_java_space_before_catch_left_brace = true +ij_java_space_before_catch_parentheses = true +ij_java_space_before_class_left_brace = true +ij_java_space_before_colon = true +ij_java_space_before_colon_in_foreach = true +ij_java_space_before_comma = false +ij_java_space_before_deconstruction_list = false +ij_java_space_before_do_left_brace = true +ij_java_space_before_else_keyword = true +ij_java_space_before_else_left_brace = true +ij_java_space_before_finally_keyword = true +ij_java_space_before_finally_left_brace = true +ij_java_space_before_for_left_brace = true +ij_java_space_before_for_parentheses = true +ij_java_space_before_for_semicolon = false +ij_java_space_before_if_left_brace = true +ij_java_space_before_if_parentheses = true +ij_java_space_before_method_call_parentheses = false +ij_java_space_before_method_left_brace = true +ij_java_space_before_method_parentheses = false +ij_java_space_before_opening_angle_bracket_in_type_parameter = false +ij_java_space_before_quest = true +ij_java_space_before_switch_left_brace = true +ij_java_space_before_switch_parentheses = true +ij_java_space_before_synchronized_left_brace = true +ij_java_space_before_synchronized_parentheses = true +ij_java_space_before_try_left_brace = true +ij_java_space_before_try_parentheses = true +ij_java_space_before_type_parameter_list = false +ij_java_space_before_while_keyword = true +ij_java_space_before_while_left_brace = true +ij_java_space_before_while_parentheses = true +ij_java_space_inside_one_line_enum_braces = false +ij_java_space_within_empty_array_initializer_braces = false +ij_java_space_within_empty_method_call_parentheses = false +ij_java_space_within_empty_method_parentheses = false +ij_java_spaces_around_additive_operators = true +ij_java_spaces_around_annotation_eq = true +ij_java_spaces_around_assignment_operators = true +ij_java_spaces_around_bitwise_operators = true +ij_java_spaces_around_equality_operators = true +ij_java_spaces_around_lambda_arrow = true +ij_java_spaces_around_logical_operators = true +ij_java_spaces_around_method_ref_dbl_colon = false +ij_java_spaces_around_multiplicative_operators = true +ij_java_spaces_around_relational_operators = true +ij_java_spaces_around_shift_operators = true +ij_java_spaces_around_type_bounds_in_type_parameters = true +ij_java_spaces_around_unary_operator = false +ij_java_spaces_within_angle_brackets = false +ij_java_spaces_within_annotation_parentheses = false +ij_java_spaces_within_array_initializer_braces = false +ij_java_spaces_within_braces = false +ij_java_spaces_within_brackets = false +ij_java_spaces_within_cast_parentheses = false +ij_java_spaces_within_catch_parentheses = false +ij_java_spaces_within_deconstruction_list = false +ij_java_spaces_within_for_parentheses = false +ij_java_spaces_within_if_parentheses = false +ij_java_spaces_within_method_call_parentheses = false +ij_java_spaces_within_method_parentheses = false +ij_java_spaces_within_parentheses = false +ij_java_spaces_within_record_header = false +ij_java_spaces_within_switch_parentheses = false +ij_java_spaces_within_synchronized_parentheses = false +ij_java_spaces_within_try_parentheses = false +ij_java_spaces_within_while_parentheses = false +ij_java_special_else_if_treatment = true +ij_java_static_field_name_prefix = +ij_java_static_field_name_suffix = +ij_java_subclass_name_prefix = +ij_java_subclass_name_suffix = Impl +ij_java_ternary_operation_signs_on_next_line = false +ij_java_ternary_operation_wrap = off +ij_java_test_name_prefix = +ij_java_test_name_suffix = Test +ij_java_throws_keyword_wrap = off +ij_java_throws_list_wrap = off +ij_java_use_external_annotations = false +ij_java_use_fq_class_names = false +ij_java_use_relative_indents = false +ij_java_use_single_class_imports = true +ij_java_variable_annotation_wrap = off +ij_java_visibility = public +ij_java_while_brace_force = never +ij_java_while_on_new_line = false +ij_java_wrap_comments = false +ij_java_wrap_first_method_in_call_chain = false +ij_java_wrap_long_lines = false + +[{*.gant,*.groovy,*.gy,*.gradle}] +ij_groovy_align_group_field_declarations = false +ij_groovy_align_multiline_array_initializer_expression = false +ij_groovy_align_multiline_assignment = false +ij_groovy_align_multiline_binary_operation = false +ij_groovy_align_multiline_chained_methods = false +ij_groovy_align_multiline_extends_list = false +ij_groovy_align_multiline_for = true +ij_groovy_align_multiline_list_or_map = true +ij_groovy_align_multiline_method_parentheses = false +ij_groovy_align_multiline_parameters = true +ij_groovy_align_multiline_parameters_in_calls = false +ij_groovy_align_multiline_resources = true +ij_groovy_align_multiline_ternary_operation = false +ij_groovy_align_multiline_throws_list = false +ij_groovy_align_named_args_in_map = true +ij_groovy_align_throws_keyword = false +ij_groovy_array_initializer_new_line_after_left_brace = false +ij_groovy_array_initializer_right_brace_on_new_line = false +ij_groovy_array_initializer_wrap = off +ij_groovy_assert_statement_wrap = off +ij_groovy_assignment_wrap = off +ij_groovy_binary_operation_wrap = off +ij_groovy_blank_lines_after_class_header = 0 +ij_groovy_blank_lines_after_imports = 1 +ij_groovy_blank_lines_after_package = 1 +ij_groovy_blank_lines_around_class = 1 +ij_groovy_blank_lines_around_field = 0 +ij_groovy_blank_lines_around_field_in_interface = 0 +ij_groovy_blank_lines_around_method = 1 +ij_groovy_blank_lines_around_method_in_interface = 1 +ij_groovy_blank_lines_before_imports = 1 +ij_groovy_blank_lines_before_method_body = 0 +ij_groovy_blank_lines_before_package = 0 +ij_groovy_block_brace_style = end_of_line +ij_groovy_block_comment_add_space = false +ij_groovy_block_comment_at_first_column = true +ij_groovy_call_parameters_new_line_after_left_paren = false +ij_groovy_call_parameters_right_paren_on_new_line = false +ij_groovy_call_parameters_wrap = off +ij_groovy_catch_on_new_line = false +ij_groovy_class_annotation_wrap = split_into_lines +ij_groovy_class_brace_style = end_of_line +ij_groovy_class_count_to_use_import_on_demand = 5 +ij_groovy_do_while_brace_force = never +ij_groovy_else_on_new_line = false +ij_groovy_enable_groovydoc_formatting = true +ij_groovy_enum_constants_wrap = off +ij_groovy_extends_keyword_wrap = off +ij_groovy_extends_list_wrap = off +ij_groovy_field_annotation_wrap = split_into_lines +ij_groovy_finally_on_new_line = false +ij_groovy_for_brace_force = never +ij_groovy_for_statement_new_line_after_left_paren = false +ij_groovy_for_statement_right_paren_on_new_line = false +ij_groovy_for_statement_wrap = off +ij_groovy_ginq_general_clause_wrap_policy = 2 +ij_groovy_ginq_having_wrap_policy = 1 +ij_groovy_ginq_indent_having_clause = true +ij_groovy_ginq_indent_on_clause = true +ij_groovy_ginq_on_wrap_policy = 1 +ij_groovy_ginq_space_after_keyword = true +ij_groovy_if_brace_force = never +ij_groovy_import_annotation_wrap = 2 +ij_groovy_imports_layout = *,|,javax.**,java.**,|,$* +ij_groovy_indent_case_from_switch = true +ij_groovy_indent_label_blocks = true +ij_groovy_insert_inner_class_imports = false +ij_groovy_keep_blank_lines_before_right_brace = 2 +ij_groovy_keep_blank_lines_in_code = 2 +ij_groovy_keep_blank_lines_in_declarations = 2 +ij_groovy_keep_control_statement_in_one_line = true +ij_groovy_keep_first_column_comment = true +ij_groovy_keep_indents_on_empty_lines = false +ij_groovy_keep_line_breaks = true +ij_groovy_keep_multiple_expressions_in_one_line = false +ij_groovy_keep_simple_blocks_in_one_line = false +ij_groovy_keep_simple_classes_in_one_line = true +ij_groovy_keep_simple_lambdas_in_one_line = true +ij_groovy_keep_simple_methods_in_one_line = true +ij_groovy_label_indent_absolute = false +ij_groovy_label_indent_size = 0 +ij_groovy_lambda_brace_style = end_of_line +ij_groovy_layout_static_imports_separately = true +ij_groovy_line_comment_add_space = false +ij_groovy_line_comment_add_space_on_reformat = false +ij_groovy_line_comment_at_first_column = true +ij_groovy_method_annotation_wrap = split_into_lines +ij_groovy_method_brace_style = end_of_line +ij_groovy_method_call_chain_wrap = off +ij_groovy_method_parameters_new_line_after_left_paren = false +ij_groovy_method_parameters_right_paren_on_new_line = false +ij_groovy_method_parameters_wrap = off +ij_groovy_modifier_list_wrap = false +ij_groovy_names_count_to_use_import_on_demand = 3 +ij_groovy_packages_to_use_import_on_demand = java.awt.*,javax.swing.* +ij_groovy_parameter_annotation_wrap = off +ij_groovy_parentheses_expression_new_line_after_left_paren = false +ij_groovy_parentheses_expression_right_paren_on_new_line = false +ij_groovy_prefer_parameters_wrap = false +ij_groovy_resource_list_new_line_after_left_paren = false +ij_groovy_resource_list_right_paren_on_new_line = false +ij_groovy_resource_list_wrap = off +ij_groovy_space_after_assert_separator = true +ij_groovy_space_after_colon = true +ij_groovy_space_after_comma = true +ij_groovy_space_after_comma_in_type_arguments = true +ij_groovy_space_after_for_semicolon = true +ij_groovy_space_after_quest = true +ij_groovy_space_after_type_cast = true +ij_groovy_space_before_annotation_parameter_list = false +ij_groovy_space_before_array_initializer_left_brace = false +ij_groovy_space_before_assert_separator = false +ij_groovy_space_before_catch_keyword = true +ij_groovy_space_before_catch_left_brace = true +ij_groovy_space_before_catch_parentheses = true +ij_groovy_space_before_class_left_brace = true +ij_groovy_space_before_closure_left_brace = true +ij_groovy_space_before_colon = true +ij_groovy_space_before_comma = false +ij_groovy_space_before_do_left_brace = true +ij_groovy_space_before_else_keyword = true +ij_groovy_space_before_else_left_brace = true +ij_groovy_space_before_finally_keyword = true +ij_groovy_space_before_finally_left_brace = true +ij_groovy_space_before_for_left_brace = true +ij_groovy_space_before_for_parentheses = true +ij_groovy_space_before_for_semicolon = false +ij_groovy_space_before_if_left_brace = true +ij_groovy_space_before_if_parentheses = true +ij_groovy_space_before_method_call_parentheses = false +ij_groovy_space_before_method_left_brace = true +ij_groovy_space_before_method_parentheses = false +ij_groovy_space_before_quest = true +ij_groovy_space_before_record_parentheses = false +ij_groovy_space_before_switch_left_brace = true +ij_groovy_space_before_switch_parentheses = true +ij_groovy_space_before_synchronized_left_brace = true +ij_groovy_space_before_synchronized_parentheses = true +ij_groovy_space_before_try_left_brace = true +ij_groovy_space_before_try_parentheses = true +ij_groovy_space_before_while_keyword = true +ij_groovy_space_before_while_left_brace = true +ij_groovy_space_before_while_parentheses = true +ij_groovy_space_in_named_argument = true +ij_groovy_space_in_named_argument_before_colon = false +ij_groovy_space_within_empty_array_initializer_braces = false +ij_groovy_space_within_empty_method_call_parentheses = false +ij_groovy_spaces_around_additive_operators = true +ij_groovy_spaces_around_assignment_operators = true +ij_groovy_spaces_around_bitwise_operators = true +ij_groovy_spaces_around_equality_operators = true +ij_groovy_spaces_around_lambda_arrow = true +ij_groovy_spaces_around_logical_operators = true +ij_groovy_spaces_around_multiplicative_operators = true +ij_groovy_spaces_around_regex_operators = true +ij_groovy_spaces_around_relational_operators = true +ij_groovy_spaces_around_shift_operators = true +ij_groovy_spaces_within_annotation_parentheses = false +ij_groovy_spaces_within_array_initializer_braces = false +ij_groovy_spaces_within_braces = true +ij_groovy_spaces_within_brackets = false +ij_groovy_spaces_within_cast_parentheses = false +ij_groovy_spaces_within_catch_parentheses = false +ij_groovy_spaces_within_for_parentheses = false +ij_groovy_spaces_within_gstring_injection_braces = false +ij_groovy_spaces_within_if_parentheses = false +ij_groovy_spaces_within_list_or_map = false +ij_groovy_spaces_within_method_call_parentheses = false +ij_groovy_spaces_within_method_parentheses = false +ij_groovy_spaces_within_parentheses = false +ij_groovy_spaces_within_switch_parentheses = false +ij_groovy_spaces_within_synchronized_parentheses = false +ij_groovy_spaces_within_try_parentheses = false +ij_groovy_spaces_within_tuple_expression = false +ij_groovy_spaces_within_while_parentheses = false +ij_groovy_special_else_if_treatment = true +ij_groovy_ternary_operation_wrap = off +ij_groovy_throws_keyword_wrap = off +ij_groovy_throws_list_wrap = off +ij_groovy_use_flying_geese_braces = false +ij_groovy_use_fq_class_names = false +ij_groovy_use_fq_class_names_in_javadoc = true +ij_groovy_use_relative_indents = false +ij_groovy_use_single_class_imports = true +ij_groovy_variable_annotation_wrap = off +ij_groovy_while_brace_force = never +ij_groovy_while_on_new_line = false +ij_groovy_wrap_chain_calls_after_dot = false +ij_groovy_wrap_long_lines = false + +[{*.toml,Cargo.lock,Cargo.toml.orig,Gopkg.lock,Pipfile,poetry.lock}] +ij_toml_keep_indents_on_empty_lines = false diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml new file mode 100644 index 00000000..44f58faf --- /dev/null +++ b/.github/workflows/gradle-build.yml @@ -0,0 +1,28 @@ +name: Java CI with Maven + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + name: Java ${{ matrix.java_version }} + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + java_version: ['8', '11', '17'] + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v3 + with: + java-version: ${{ matrix.java_version }} + distribution: 'temurin' + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 + - name: Build with Gradle on Java ${{ matrix.java_version }} + uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 + with: + arguments: build diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml deleted file mode 100644 index 1f73297c..00000000 --- a/.github/workflows/maven.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Java CI with Maven - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - name: Java ${{ matrix.java_version }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - java_version: ['8', '11', '17'] - - steps: - - uses: actions/checkout@v3 - - name: Set up JDK ${{ matrix.java_version }} - uses: actions/setup-java@v3 - with: - java-version: ${{ matrix.java_version }} - distribution: 'temurin' - cache: maven - - name: Build with Maven - run: mvn -B package --file pom.xml diff --git a/.github/workflows/publish-to-github-packages.yml b/.github/workflows/publish-to-github-packages.yml new file mode 100644 index 00000000..d85721b5 --- /dev/null +++ b/.github/workflows/publish-to-github-packages.yml @@ -0,0 +1,33 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# GitHub recommends pinning actions to a commit SHA. +# To get a newer version, you will need to update the SHA. +# You can also reference a tag or branch, but the action may change without warning. + +name: Publish package to GitHub Packages +on: + release: + types: [created] +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'temurin' + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 + - name: Publish package + uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 + with: + arguments: publish + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore index 8a54c833..094c54e8 100644 --- a/.gitignore +++ b/.gitignore @@ -6,8 +6,8 @@ bin target src/main/java/org/natty/generated/* src/main/java/*.tokens -src/main/antlr3/org/natty/generated/DebugDateParser.g -src/main/antlr3/org/natty/generated/DebugDateWalker.g +src/main/antlr/org/natty/generated/DebugDateParser.g +src/main/antlr/org/natty/generated/DebugDateWalker.g # IntelliJ Idea *.iml diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..937b6c0f --- /dev/null +++ b/gradle.properties @@ -0,0 +1,5 @@ +group=io.github.natty-parser + +# nebula release settings +release.scope=patch +release.stage=SNAPSHOT \ No newline at end of file diff --git a/pom.xml b/pom.xml deleted file mode 100644 index af2e69e7..00000000 --- a/pom.xml +++ /dev/null @@ -1,283 +0,0 @@ - - 4.0.0 - io.github.natty-parser - natty - jar - 1.0.1 - Natty Date Parser - natural language date parser - https://github.com/natty-parser/natty - - - - MIT License - https://opensource.org/licenses/MIT - - - - - scm:git:git@github.com:natty-parser/natty.git - scm:git:git@github.com:natty-parser/natty.git - scm:git:git@github.com:natty-parser/natty.git - - - - - mccartney - Greg Oledzki - http://github.com/mccartney - - developer - - 1 - - - - - ${basedir}/src/main/antlr3/org/natty/generated - UTF-8 - UTF-8 - -Xdoclint:none - 1.8 - 1.8 - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://s01.oss.sonatype.org/ - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - forked-path - - - - - - maven-compiler-plugin - 3.11.0 - - - - - maven-clean-plugin - 3.3.2 - - - - src/main/java/org/natty/generated - - **/*.java - - false - - - - - - - - org.antlr - antlr3-maven-plugin - 3.5.3 - - - - debug - - antlr - - - true - src/main/antlr3/org/natty/generated/imports - src/main/java - - org/natty/generated/DateLexer.g - org/natty/generated/DateParser.g - - - org/natty/generated/imports/NumericRules.g - - - - - - non-debug - - antlr - - - false - src/main/java - src/main/antlr3/org/natty/generated/imports - - org/natty/generated/DateLexer.g - org/natty/generated/DateParser.g - org/natty/generated/imports/NumericRules.g - - - - - - - - - - org.antlr - maven-gunit-plugin - 3.5.3 - - - maven-gunit-plugin - test - - gunit - - - - - - - - - - - release - - - performRelease - true - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - - sign - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - - - - attach-javadocs - - jar - - - - - - - - - - - - - org.antlr - antlr-runtime - 3.5.3 - - - - org.mnode.ical4j - ical4j - 3.2.14 - - - - org.slf4j - slf4j-api - 2.0.9 - - - - org.slf4j - slf4j-log4j12 - 1.7.33 - test - - - - ch.qos.logback - logback-classic - 1.3.4 - test - - - - junit - junit - 4.13.2 - test - - - - org.antlr - gunit - 3.5.3 - test - - - diff --git a/src/main/antlr3/org/natty/generated/DateLexer.g b/src/main/antlr/org/natty/generated/DateLexer.g similarity index 100% rename from src/main/antlr3/org/natty/generated/DateLexer.g rename to src/main/antlr/org/natty/generated/DateLexer.g diff --git a/src/main/antlr3/org/natty/generated/DateParser.g b/src/main/antlr/org/natty/generated/DateParser.g similarity index 100% rename from src/main/antlr3/org/natty/generated/DateParser.g rename to src/main/antlr/org/natty/generated/DateParser.g diff --git a/src/main/antlr3/org/natty/generated/DateWalker.g b/src/main/antlr/org/natty/generated/DateWalker.g similarity index 100% rename from src/main/antlr3/org/natty/generated/DateWalker.g rename to src/main/antlr/org/natty/generated/DateWalker.g diff --git a/src/main/antlr3/org/natty/generated/TreeRewrite.g b/src/main/antlr/org/natty/generated/TreeRewrite.g similarity index 100% rename from src/main/antlr3/org/natty/generated/TreeRewrite.g rename to src/main/antlr/org/natty/generated/TreeRewrite.g diff --git a/src/main/antlr3/org/natty/generated/imports/NumericRules.g b/src/main/antlr/org/natty/generated/imports/NumericRules.g similarity index 100% rename from src/main/antlr3/org/natty/generated/imports/NumericRules.g rename to src/main/antlr/org/natty/generated/imports/NumericRules.g From 60e9f83288f4f6ddc12893953f9669eff2ff81a9 Mon Sep 17 00:00:00 2001 From: Peter Schuebl Date: Tue, 5 Dec 2023 16:30:09 +0100 Subject: [PATCH 2/8] #30 migrate to gradle build --- .gitignore | 2 + build.gradle | 61 ++++++ gradle/libs.versions.toml | 26 +++ gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 43462 bytes gradle/wrapper/gradle-wrapper.properties | 7 + gradlew | 249 +++++++++++++++++++++++ gradlew.bat | 92 +++++++++ settings.gradle | 6 + 8 files changed, 443 insertions(+) create mode 100644 build.gradle create mode 100644 gradle/libs.versions.toml create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle diff --git a/.gitignore b/.gitignore index 094c54e8..ae9e6e3e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,11 @@ .classpath .settings .project +.gradle workspace.xml bin target +build/ src/main/java/org/natty/generated/* src/main/java/*.tokens src/main/antlr/org/natty/generated/DebugDateParser.g diff --git a/build.gradle b/build.gradle new file mode 100644 index 00000000..f4d7b935 --- /dev/null +++ b/build.gradle @@ -0,0 +1,61 @@ + +plugins { + id 'java-library' + id 'maven-publish' + id 'antlr' + + alias(libs.plugins.nebula.release) +} + +repositories { + mavenLocal() + maven { + url = uri('https://repo.maven.apache.org/maven2/') + } +} + +dependencies { + api libs.antlr.runtime + api libs.ical4j + api libs.slf4j.api + + antlr libs.antlr + + testImplementation libs.slf4j.log4j12 + testImplementation libs.logback.classic + testImplementation libs.junit + testImplementation libs.antlr.gunit + +} + +description = 'Natty Date Parser' + +generateGrammarSource { + + arguments += ["-visitor", + "-listener", + "-long-messages", + "-lib", "src/main/antlr/org/natty/generated/imports" + ] + outputDirectory = file("${project.buildDir}/generated-src/antlr/") + source "src/main/antlr" + include "org/natty/generated/DateLexer.g" + include "org/natty/generated/DateParser.g" + +} + +publishing { + publications { + maven(MavenPublication) { + from(components.java) + } + } +} + +tasks.withType(JavaCompile).configureEach { + options.encoding = 'UTF-8' +} + +tasks.withType(Javadoc).configureEach { + options.encoding = 'UTF-8' +} diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 00000000..d6b3b892 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,26 @@ +# This file was generated by the Gradle 'init' task. +# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format + +[versions] +logback-classic = "1.3.4" +junit = "4.13.2" +antlr = "3.5.3" +ical4j = "3.2.14" +slf4j-api = "2.0.9" +slf4j-log4j12 = "1.7.33" + +# gradle plugins +nebula-release = "18.0.5" + +[libraries] +logback-classic = { module = "ch.qos.logback:logback-classic", version.ref = "logback-classic" } +junit = { module = "junit:junit", version.ref = "junit" } +antlr-runtime = { module = "org.antlr:antlr-runtime", version.ref = "antlr" } +antlr = { module = "org.antlr:antlr", version.ref = "antlr" } +antlr-gunit = { module = "org.antlr:gunit", version.ref = "antlr" } +ical4j = { module = "org.mnode.ical4j:ical4j", version.ref = "ical4j" } +slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j-api" } +slf4j-log4j12 = { module = "org.slf4j:slf4j-log4j12", version.ref = "slf4j-log4j12" } + +[plugins] +nebula-release = { id = "nebula.release", version.ref="nebula-release" } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..d64cd4917707c1f8861d8cb53dd15194d4248596 GIT binary patch literal 43462 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 literal 0 HcmV?d00001 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..1af9e093 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100755 index 00000000..1aa94a42 --- /dev/null +++ b/gradlew @@ -0,0 +1,249 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 00000000..93e3f59f --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 00000000..42caa318 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,6 @@ +pluginManagement { + // Include 'plugins build' to define convention plugins. + includeBuild('build-logic') +} + +rootProject.name = 'natty' From 4c5525adbb38618be1cbb75f158c0eec29f28a90 Mon Sep 17 00:00:00 2001 From: Peter Schuebl Date: Thu, 7 Dec 2023 11:15:03 +0100 Subject: [PATCH 3/8] #30 fix gradle build and github workflow --- .github/workflows/gradle-build.yml | 2 +- README.md | 10 +++++++++- gradle/libs.versions.toml | 4 ++-- settings.gradle | 5 ----- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 44f58faf..5d217b49 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -1,4 +1,4 @@ -name: Java CI with Maven +name: Java CI with Gradle on: push: diff --git a/README.md b/README.md index 155e67b1..cd727d9d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Maven: io.github.natty-parser natty - 1.0.1 + 1.0.3 ``` @@ -50,3 +50,11 @@ Are more then welcome. Feel free to reach out (e.g. by creating an issue in this maintainers. Tag @mccartney if no response for 2-3 days (I might have missed that). I see this project potentially being welcoming to many, incl. quite junior and inexperienced developers, who would like to learn and contribute. + +## Build + +Builds are done using the gradle wrapper. All that's need is a JDK (8 or upwards) to be installed on the machine. + +```shell +./gradlew build +``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d6b3b892..84efc709 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,12 +2,12 @@ # https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format [versions] -logback-classic = "1.3.4" +logback-classic = "1.3.14" junit = "4.13.2" antlr = "3.5.3" ical4j = "3.2.14" slf4j-api = "2.0.9" -slf4j-log4j12 = "1.7.33" +slf4j-log4j12 = "1.7.36" # gradle plugins nebula-release = "18.0.5" diff --git a/settings.gradle b/settings.gradle index 42caa318..1ae69cc3 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,6 +1 @@ -pluginManagement { - // Include 'plugins build' to define convention plugins. - includeBuild('build-logic') -} - rootProject.name = 'natty' From 895e514038ecc2ac83f43507a0e9403593a6b4ac Mon Sep 17 00:00:00 2001 From: Peter Schuebl Date: Thu, 7 Dec 2023 11:21:18 +0100 Subject: [PATCH 4/8] #30 fix gradle build and github workflow --- .github/workflows/gradle-build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 5d217b49..9dfe9301 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -20,9 +20,9 @@ jobs: with: java-version: ${{ matrix.java_version }} distribution: 'temurin' - - name: Validate Gradle wrapper - uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 - - name: Build with Gradle on Java ${{ matrix.java_version }} - uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 + - name: Setup Gradle to generate and submit dependency graphs + uses: gradle/gradle-build-action@v2 with: - arguments: build + dependency-graph: generate-and-submit + - name: Run a build and generate the dependency graph which will be submitted post-job + run: ./gradlew build From 14284878d6a007fda6132b8ffb69233864f23f25 Mon Sep 17 00:00:00 2001 From: Peter Schuebl Date: Thu, 7 Dec 2023 12:04:44 +0100 Subject: [PATCH 5/8] #30 debug gradle github build --- .github/workflows/gradle-build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 9dfe9301..f3179f44 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -13,7 +13,8 @@ jobs: strategy: fail-fast: false matrix: - java_version: ['8', '11', '17'] + java_version: ['8'] + # java_version: ['8', '11', '17'] steps: - uses: actions/checkout@v4 - uses: actions/setup-java@v3 @@ -25,4 +26,4 @@ jobs: with: dependency-graph: generate-and-submit - name: Run a build and generate the dependency graph which will be submitted post-job - run: ./gradlew build + run: ./gradlew clean build --info From 214b4ad553e17c1ea73f68fb9168a9b358986a12 Mon Sep 17 00:00:00 2001 From: "$(git --no-pager log --format=format:'%an' -n 1)" <$(git --no-pager log --format=format:'%ae' -n 1)> Date: Wed, 4 Jun 2025 11:41:31 +0200 Subject: [PATCH 6/8] #30 migrate to junit 5 --- build.gradle | 41 +- gradle/libs.versions.toml | 32 +- gradle/wrapper/gradle-wrapper.properties | 2 +- src/test/java/org/natty/AbstractTest.java | 256 ++-- src/test/java/org/natty/CPANTest.java | 46 +- src/test/java/org/natty/DateTest.java | 811 ++++++----- src/test/java/org/natty/DateTimeTest.java | 307 ++-- src/test/java/org/natty/IcsTest.java | 284 ++-- src/test/java/org/natty/RecurrenceTest.java | 67 +- src/test/java/org/natty/SearchTest.java | 790 +++++----- src/test/java/org/natty/ThreadSafetyTest.java | 107 +- src/test/java/org/natty/TimeTest.java | 292 ++-- src/test/java/org/natty/TimeZoneTest.java | 59 +- .../natty/grammar/AbstractGrammarTest.java | 90 +- .../org/natty/grammar/DateGrammarTest.java | 1271 +++++++++-------- .../natty/grammar/DateTimeGrammarTest.java | 108 +- .../org/natty/grammar/HolidayGrammarTest.java | 153 +- .../org/natty/grammar/NumericGrammarTest.java | 1021 +++++-------- .../org/natty/grammar/TimeGrammarTest.java | 291 ++-- src/test/resources/log4j.properties | 5 - src/test/resources/log4j2.xml | 14 + .../test/datetime-alternative-test-data.csv | 21 + .../resources/test/datetime-test-data.csv | 48 + .../test/holiday-statement-test-data.csv | 14 + .../resources/test/holidays-test-data.csv | 68 + 25 files changed, 2911 insertions(+), 3287 deletions(-) delete mode 100644 src/test/resources/log4j.properties create mode 100644 src/test/resources/log4j2.xml create mode 100644 src/test/resources/test/datetime-alternative-test-data.csv create mode 100644 src/test/resources/test/datetime-test-data.csv create mode 100644 src/test/resources/test/holiday-statement-test-data.csv create mode 100644 src/test/resources/test/holidays-test-data.csv diff --git a/build.gradle b/build.gradle index f4d7b935..adabd2c6 100644 --- a/build.gradle +++ b/build.gradle @@ -1,10 +1,10 @@ - plugins { id 'java-library' id 'maven-publish' id 'antlr' alias(libs.plugins.nebula.release) + alias(libs.plugins.lombok) } repositories { @@ -15,16 +15,31 @@ repositories { } dependencies { - api libs.antlr.runtime - api libs.ical4j - api libs.slf4j.api + api( + libs.antlr.runtime, + libs.ical4j, + libs.slf4j.api + ) antlr libs.antlr - testImplementation libs.slf4j.log4j12 - testImplementation libs.logback.classic - testImplementation libs.junit - testImplementation libs.antlr.gunit + testImplementation( + // libs.slf4j.log4j12, // required for Level + libs.junit, + libs.junit.jupiter.api, + libs.junit.jupiter.params, + libs.antlr.gunit, + libs.assertj.core + ) + testRuntimeOnly( + // libs.slf4j.simple, + libs.log4j2, + libs.junit.jupiter.engine, + libs.junit.vintage.engine, + libs.junit.platform.engine, + //libs.logback.classic + ) + } @@ -37,7 +52,7 @@ generateGrammarSource { "-long-messages", "-lib", "src/main/antlr/org/natty/generated/imports" ] - outputDirectory = file("${project.buildDir}/generated-src/antlr/") + outputDirectory = file("${project.buildDir}/generated-src/antlr/") source "src/main/antlr" include "org/natty/generated/DateLexer.g" include "org/natty/generated/DateParser.g" @@ -52,6 +67,14 @@ publishing { } } +test { + useJUnitPlatform() + testLogging { + showStandardStreams = true + } +} + + tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 84efc709..64afad62 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,24 +3,42 @@ [versions] logback-classic = "1.3.14" +log4j2 = "2.24.3" junit = "4.13.2" antlr = "3.5.3" ical4j = "3.2.14" -slf4j-api = "2.0.9" -slf4j-log4j12 = "1.7.36" +slf4j = "2.0.17" +junit-jupiter = "5.13.0" +junit-platform = "1.13.0" +assertj = "3.27.3" -# gradle plugins -nebula-release = "18.0.5" +nebula-release = "19.0.10" +lombok = "8.13.1" [libraries] logback-classic = { module = "ch.qos.logback:logback-classic", version.ref = "logback-classic" } +log4j2 = { module = "org.apache.logging.log4j:log4j-slf4j2-impl", version.ref = "log4j2" } + junit = { module = "junit:junit", version.ref = "junit" } antlr-runtime = { module = "org.antlr:antlr-runtime", version.ref = "antlr" } antlr = { module = "org.antlr:antlr", version.ref = "antlr" } antlr-gunit = { module = "org.antlr:gunit", version.ref = "antlr" } ical4j = { module = "org.mnode.ical4j:ical4j", version.ref = "ical4j" } -slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j-api" } -slf4j-log4j12 = { module = "org.slf4j:slf4j-log4j12", version.ref = "slf4j-log4j12" } +slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" } +slf4j-log4j12 = { module = "org.slf4j:slf4j-log4j12", version.ref = "slf4j" } +slf4j-simple = { module = "org.slf4j:slf4j-simple", version.ref = "slf4j" } +junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit-jupiter" } +junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit-jupiter" } +junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit-jupiter" } + +junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit-jupiter" } +junit-vintage-engine = { module = "org.junit.vintage:junit-vintage-engine", version.ref = "junit-jupiter" } +# ... existing libraries ... +assertj-core = { module = "org.assertj:assertj-core", version.ref = "assertj" } +junit-platform-engine = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit-platform" } + + [plugins] -nebula-release = { id = "nebula.release", version.ref="nebula-release" } \ No newline at end of file +nebula-release = { id = "nebula.release", version.ref = "nebula-release" } +lombok = { id = "io.freefair.lombok", version.ref = "lombok" } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 1af9e093..002b867c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/src/test/java/org/natty/AbstractTest.java b/src/test/java/org/natty/AbstractTest.java index 32382b2e..be7953bc 100644 --- a/src/test/java/org/natty/AbstractTest.java +++ b/src/test/java/org/natty/AbstractTest.java @@ -1,163 +1,119 @@ package org.natty; -import org.junit.Assert; -import org.junit.Before; +import org.junit.jupiter.api.BeforeEach; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.List; +import static org.assertj.core.api.Assertions.assertThat; + /** - * * @author Joe Stelmach */ public abstract class AbstractTest { - private static Calendar _calendar; - protected static CalendarSource calendarSource; - protected static Parser _parser; - - - public static void initCalendarAndParser() { - _calendar = Calendar.getInstance(); - _parser = new Parser(); - } - - /** - * Resets the calendar source time before each test - */ - @Before - public void before() { - calendarSource = new CalendarSource(); - } - - /** - * Parses the given value into a collection of dates - * - * @param value - * @return - */ - protected List parseCollection(Date referenceDate, String value) { - List dateGroup = _parser.parse(value, referenceDate); - return dateGroup.isEmpty() ? new ArrayList() : dateGroup.get(0).getDates(); - } - - /** - * Parses the given value, asserting that one and only one date is produced. - * - * @param value - * @return - */ - protected Date parseSingleDate(String value, Date referenceDate) { - List dates = parseCollection(referenceDate, value); - Assert.assertEquals(1, dates.size()); - return dates.get(0); - } - - /** - * Asserts that the given string value parses down to the given - * month, day, and year values. - * - * @param value - * @param month - * @param day - * @param year - */ - protected void validateDate(Date referenceDate, String value, int month, int day, int year) { - Date date = parseSingleDate(value, referenceDate); - validateDate(date, month, day, year); - } - - protected void validateDate(String value, int month, int day, int year) { - validateDate(new Date(), value, month, day, year); - } - - /** - * Asserts that the given date contains the given attributes - * - * @param date - * @param month - * @param day - * @param year - */ - protected void validateDate(Date date, int month, int day, int year) { - _calendar.setTime(date); - Assert.assertEquals(month -1, _calendar.get(Calendar.MONTH)); - Assert.assertEquals(day, _calendar.get(Calendar.DAY_OF_MONTH)); - Assert.assertEquals(year, _calendar.get(Calendar.YEAR)); - } - - /** - * - * Asserts that the given string value parses down to the given - * hours, minutes, and seconds - * - * @param value - * @param hours - * @param minutes - * @param seconds - */ - protected void validateTime(Date referenceDate, String value, int hours, int minutes, int seconds) { - Date date = parseSingleDate(value, referenceDate); - validateTime(date, hours, minutes, seconds); - } - - /** - * - * Asserts that the given date contains the given time attributes - * - * @param date - * @param hours - * @param minutes - * @param seconds - */ - protected void validateTime(Date date, int hours, int minutes, int seconds) { - _calendar.setTime(date); - Assert.assertEquals(hours, _calendar.get(Calendar.HOUR_OF_DAY)); - Assert.assertEquals(minutes, _calendar.get(Calendar.MINUTE)); - Assert.assertEquals(seconds, _calendar.get(Calendar.SECOND)); - } - - /** - * - * Asserts that the given string value parses down to the given - * month, day, year, hours, minutes, and seconds - * - * @param value - * @param month - * @param day - * @param year - * @param hours - * @param minutes - * @param seconds - */ - protected void validateDateTime(Date referenceDate, String value, int month, int day, int year, - int hours, int minutes, int seconds) { - - Date date = parseSingleDate(value, referenceDate); - validateDateTime(date, month, day, year, hours, minutes, seconds); - } - - /** - * Asserts that the given date contains the given attributes - * - * @param date - * @param month - * @param day - * @param year - * @param hours - * @param minutes - * @param seconds - */ - protected void validateDateTime(Date date, int month, int day, int year, - int hours, int minutes, int seconds) { - - _calendar.setTime(date); - Assert.assertEquals(month -1, _calendar.get(Calendar.MONTH)); - Assert.assertEquals(day, _calendar.get(Calendar.DAY_OF_MONTH)); - Assert.assertEquals(year, _calendar.get(Calendar.YEAR)); - Assert.assertEquals(hours, _calendar.get(Calendar.HOUR_OF_DAY)); - Assert.assertEquals(minutes, _calendar.get(Calendar.MINUTE)); - Assert.assertEquals(seconds, _calendar.get(Calendar.SECOND)); - } + private static Calendar calendar; + protected static CalendarSource calendarSource; + protected static Parser parser; + + + public static void initCalendarAndParser() { + calendar = Calendar.getInstance(); + parser = new Parser(); + } + + /** + * Resets the calendar source time before each test + */ + @BeforeEach + public void before() { + calendarSource = new CalendarSource(); + } + + /** + * Parses the given value into a collection of dates + */ + protected List parseCollection(Date referenceDate, String value) { + List dateGroup = parser.parse(value, referenceDate); + return dateGroup.isEmpty() ? new ArrayList() : dateGroup.get(0).getDates(); + } + + /** + * Parses the given value, asserting that one and only one date is produced. + */ + protected Date parseSingleDate(String value, Date referenceDate) { + List dates = parseCollection(referenceDate, value); + assertThat(dates.size()).isEqualTo(1); + return dates.get(0); + } + + /** + * Asserts that the given string value parses down to the given + * month, day, and year values. + */ + protected void validateDate(Date referenceDate, String value, int month, int day, int year) { + Date date = parseSingleDate(value, referenceDate); + validateDate(date, month, day, year); + } + + protected void validateDate(String value, int month, int day, int year) { + validateDate(new Date(), value, month, day, year); + } + + /** + * Asserts that the given date contains the given attributes + */ + protected void validateDate(Date date, int month, int day, int year) { + calendar.setTime(date); + assertThat(calendar.get(Calendar.MONTH)).isEqualTo(month - 1); + assertThat(calendar.get(Calendar.DAY_OF_MONTH)).isEqualTo(day); + assertThat(calendar.get(Calendar.YEAR)).isEqualTo(year); + } + + /** + * Asserts that the given string value parses down to the given + * hours, minutes, and seconds + */ + protected void validateTime(Date referenceDate, String value, int hours, int minutes, int seconds) { + Date date = parseSingleDate(value, referenceDate); + validateTime(date, hours, minutes, seconds); + } + + /** + * Asserts that the given date contains the given time attributes + */ + protected void validateTime(Date date, int hours, int minutes, int seconds) { + calendar.setTime(date); + assertThat(calendar.get(Calendar.HOUR_OF_DAY)).isEqualTo(hours); + assertThat(calendar.get(Calendar.MINUTE)).isEqualTo(minutes); + assertThat(calendar.get(Calendar.SECOND)).isEqualTo(seconds); + } + + /** + * Asserts that the given string value parses down to the given + * month, day, year, hours, minutes, and seconds + */ + protected void validateDateTime(Date referenceDate, String value, int month, int day, int year, + int hours, int minutes, int seconds) { + + Date date = parseSingleDate(value, referenceDate); + validateDateTime(date, month, day, year, hours, minutes, seconds); + } + + /** + * Asserts that the given date contains the given attributes + */ + protected void validateDateTime(Date date, int month, int day, int year, + int hours, int minutes, int seconds) { + + calendar.setTime(date); + + assertThat(calendar.get(Calendar.MONTH)).isEqualTo(month - 1); + assertThat(calendar.get(Calendar.DAY_OF_MONTH)).isEqualTo(day); + assertThat(calendar.get(Calendar.YEAR)).isEqualTo(year); + assertThat(calendar.get(Calendar.HOUR_OF_DAY)).isEqualTo(hours); + assertThat(calendar.get(Calendar.MINUTE)).isEqualTo(minutes); + assertThat(calendar.get(Calendar.SECOND)).isEqualTo(seconds); + } } diff --git a/src/test/java/org/natty/CPANTest.java b/src/test/java/org/natty/CPANTest.java index df3a0eed..1bb6d3f6 100644 --- a/src/test/java/org/natty/CPANTest.java +++ b/src/test/java/org/natty/CPANTest.java @@ -1,33 +1,39 @@ package org.natty; +import org.junit.jupiter.api.Test; + import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.List; -import junit.framework.Assert; +import static org.assertj.core.api.Assertions.assertThat; -import org.junit.Test; /** - * * @author Joe Stelmach */ -public class CPANTest { - - @Test - public void sanityCheck() throws Exception { - BufferedReader reader = new BufferedReader(new InputStreamReader( - CPANTest.class.getResourceAsStream("/cpan.txt"))); - String value = null; - while((value = reader.readLine()) != null) { - if(!value.trim().startsWith("#") && value.trim().length() > 0) { - Parser parser = new Parser(); - List groups = parser.parse(value); - Assert.assertEquals(1, groups.size()); - Assert.assertTrue(groups.get(0).getDates().size() > 0); - } +class CPANTest { + + @Test + void sanityCheck() throws Exception { + BufferedReader reader = null; + try { + reader = new BufferedReader(new InputStreamReader( + CPANTest.class.getResourceAsStream("/cpan.txt"))); + + String value = null; + while ((value = reader.readLine()) != null) { + if (!value.trim().startsWith("#") && !value.trim().isEmpty()) { + Parser parser = new Parser(); + List groups = parser.parse(value); + assertThat(groups).hasSize(1); + assertThat(groups.get(0).getDates()).isNotEmpty(); + } + } + } finally { + if (reader != null) { + reader.close(); + } + } } - - reader.close(); - } } diff --git a/src/test/java/org/natty/DateTest.java b/src/test/java/org/natty/DateTest.java index 8b9ec017..a64bc29b 100644 --- a/src/test/java/org/natty/DateTest.java +++ b/src/test/java/org/natty/DateTest.java @@ -1,406 +1,431 @@ package org.natty; -import junit.framework.Assert; -import org.apache.log4j.Level; -import org.junit.BeforeClass; -import org.junit.Test; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; import java.text.DateFormat; import java.util.*; import java.util.Map.Entry; +import static org.assertj.core.api.Assertions.assertThat; + + /** - * Runs the parser through the various date formats - * + * Runs the parser through the various date formats + * * @author Joe Stelmach */ -public class DateTest extends AbstractTest { - @BeforeClass - public static void oneTime() { - Locale.setDefault(Locale.US); - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - initCalendarAndParser(); - } - - @Test - public void testFormal() { - validateDate("1978-01-28", 1, 28, 1978); - validateDate("2009-10-10", 10, 10, 2009); - validateDate("1980-1-2", 1, 2, 1980); - validateDate("12/12/12", 12, 12, 2012); - validateDate("3/4", 3, 4, Calendar.getInstance().get(Calendar.YEAR)); - validateDate("sun, 11/21/2010", 11, 21, 2010); - validateDate("in october 2006", 10, 1, 2006); - validateDate("feb 1979", 2, 1, 1979); - validateDate("jan '80", 1, 1, 1980); - validateDate("2006-Jun-16", 6, 16, 2006); - validateDate("28-Feb-2010", 2, 28, 2010); - validateDate("9-Apr", 4, 9, Calendar.getInstance().get(Calendar.YEAR)); - validateDate("jan 10, '00", 1, 10, 2000); - } - - @Test - public void testRelaxed() { - validateDate("oct 1, 1980", 10, 1, 1980); - validateDate("oct. 1, 1980", 10, 1, 1980); - validateDate("oct 1,1980", 10, 1, 1980); - validateDate("1st oct in the year '89", 10, 1, 1989); - validateDate("thirty first of december '80", 12, 31, 1980); - validateDate("the first of december in the year 1980", 12, 1, 1980); - validateDate("the 2 of february in the year 1980", 2, 2, 1980); - validateDate("the 2nd of february in the year 1980", 2, 2, 1980); - validateDate("the second of february in the year 1980", 2, 2, 1980); - validateDate("jan. 2nd", 1, 2, Calendar.getInstance().get(Calendar.YEAR)); - validateDate("sun, nov 21 2010", 11, 21, 2010); - validateDate("Second Monday in October 2017", 10, 9, 2017); - validateDate("2nd thursday in sept. '02", 9, 12, 2002); - } - - @Test - public void testExplicitRelative() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/28/2011"); - calendarSource = new CalendarSource(reference); - - validateDate(reference, "final thursday in april", 4, 28, 2011); - validateDate(reference, "final thurs in sep", 9, 29, 2011); - validateDate(reference, "4th february ", 2, 4, 2011); - } - - @Test - public void testRelative() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/28/2011"); - calendarSource = new CalendarSource(reference); - - validateDate(reference, "yesterday", 2, 27, 2011); - validateDate(reference, "tomorrow", 3, 1, 2011); - validateDate(reference, "tmr", 3, 1, 2011); - validateDate(reference, "in 3 days", 3, 3, 2011); - validateDate(reference, "3 days ago", 2, 25, 2011); - validateDate(reference, "in 3 weeks", 3, 21, 2011); - validateDate(reference, "four weeks ago", 1, 31, 2011); - validateDate(reference, "in 3 months", 5, 28, 2011); - validateDate(reference, "three months ago", 11, 28, 2010); - validateDate(reference, "in 3 years", 2, 28, 2014); - validateDate(reference, "seven years ago", 2, 28, 2004); - validateDate(reference, "60 years ago", 2, 28, 1951); - validateDate(reference, "32 days ago", 1, 27, 2011); - validateDate(reference, "320 days ago", 4, 14, 2010); - validateDate(reference, "1200 days ago", 11, 16, 2007); - validateDate(reference, "365 days from now", 2, 28, 2012); - validateDate(reference, "100 months now", 6, 28, 2019); - validateDate(reference, "100 years from now", 2, 28, 2111); - validateDate(reference, "next monday", 3, 7, 2011); - validateDate(reference, "next mon", 3, 7, 2011); - validateDate(reference, "4 mondays from now", 3, 28, 2011); - validateDate(reference, "4 mondays from today", 3, 28, 2011); - validateDate(reference, "next weekend", 3, 12, 2011); - validateDate(reference, "six mondays ago", 1, 17, 2011); - validateDate(reference, "last monday", 2, 21, 2011); - validateDate(reference, "last mon", 2, 21, 2011); - validateDate(reference, "this past mon", 2, 21, 2011); - validateDate(reference, "this coming mon", 3, 7, 2011); - validateDate(reference, "this upcoming mon", 3, 7, 2011); - validateDate(reference, "next thurs", 3, 10, 2011); - validateDate(reference, "next month", 3, 28, 2011); - validateDate(reference, "last month", 1, 28, 2011); - validateDate(reference, "next week", 3, 7, 2011); - validateDate(reference, "last week", 2, 21, 2011); - validateDate(reference, "next year", 2, 28, 2012); - validateDate(reference, "last year", 2, 28, 2010); - validateDate(reference, "tues this week", 3, 1, 2011); - validateDate(reference, "tuesday this week", 3, 1, 2011); - validateDate(reference, "tuesday next week", 3, 8, 2011); - validateDate(reference, "this september", 9, 1, 2011); - validateDate(reference, "in a september", 9, 1, 2011); - validateDate(reference, "in an october", 10, 1, 2011); - validateDate(reference, "september", 9, 1, 2011); - validateDate(reference, "last september", 9, 1, 2010); - validateDate(reference, "next september", 9, 1, 2011); - validateDate(reference, "january", 1, 1, 2011); - validateDate(reference, "last january", 1, 1, 2011); - validateDate(reference, "next january", 1, 1, 2012); - validateDate(reference, "next february", 2, 1, 2012); - validateDate(reference, "last february", 2, 1, 2010); - validateDate(reference, "february ", 2, 1, 2011); - validateDate(reference, "in a year", 2, 28, 2012); - validateDate(reference, "in a week", 3, 7, 2011); - validateDate(reference, "the saturday after next", 3, 19, 2011); - validateDate(reference, "the monday after next", 3, 14, 2011); - validateDate(reference, "the monday after next monday", 3, 14, 2011); - validateDate(reference, "the monday before May 25", 5, 23, 2011); - validateDate(reference, "the 2nd monday before May 25", 5, 16, 2011); - validateDate(reference, "3 mondays after May 25", 6, 13, 2011); - validateDate(reference, "tuesday before last", 2, 15, 2011); - validateDate(reference, "a week from now", 3, 7, 2011); - validateDate(reference, "a month from today", 3, 28, 2011); - validateDate(reference, "a week after this friday", 3, 11, 2011); - validateDate(reference, "a week from this friday", 3, 11, 2011); - validateDate(reference, "two weeks from this friday", 3, 18, 2011); - validateDate(reference, "the second week after this friday", 3, 18, 2011); - validateDate(reference, "It's gonna snow! How about skiing tomorrow", 3, 1, 2011); - validateDate(reference, "A week on tuesday", 3, 8, 2011); - validateDate(reference, "A month ago", 1, 28, 2011); - validateDate(reference, "A week ago", 2, 21, 2011); - validateDate(reference, "A year ago", 2, 28, 2010); - validateDate(reference, "this month", 2, 28, 2011); - validateDate(reference, "current month", 2, 28, 2011); - validateDate(reference, "current year", 2, 28, 2011); - validateDate(reference, "first monday in 1 month", 3, 7, 2011); - validateDate(reference, "first monday of month in 1 month", 3, 7, 2011); - validateDate(reference, "first monday of 1 month", 3, 7, 2011); - validateDate(reference, "first monday in 2 months", 4, 4, 2011); - validateDate(reference, "first monday of 2 months", 4, 4, 2011); - validateDate(reference, "first monday of month 2 months", 4, 4, 2011); - validateDate(reference, "first monday of month in 2 months", 4, 4, 2011); - validateDate(reference, "first monday in 3 months", 5, 2, 2011); - validateDate(reference, "first monday of 3 months", 5, 2, 2011); - validateDate(reference, "first monday of month in 3 months", 5, 2, 2011); - validateDate(reference, "1 year 9 months from now", 11, 28, 2012); - validateDate(reference, "1 year 9 months 1 day from now", 11, 29, 2012); - validateDate(reference, "2 years 4 months ago", 10, 28, 2008); - validateDate(reference, "2 years 4 months 5 days ago", 10, 23, 2008); - } - - @Test - public void testRange() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("1/02/2011"); - calendarSource = new CalendarSource(reference); - - List dates = parseCollection(reference, "monday to friday"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 3, 2011); - validateDate(dates.get(1), 1, 7, 2011); - - dates = parseCollection(reference, "1999-12-31 to tomorrow"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 12, 31, 1999); - validateDate(dates.get(1), 1, 3, 2011); - - dates = parseCollection(reference, "now to 2010-01-01"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 1, 1, 2010); - - dates = parseCollection(reference, "jan 1 to 2"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 1, 2011); - validateDate(dates.get(1), 1, 2, 2011); - - dates = parseCollection(reference, "may 2nd to 5th"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 5, 2, 2011); - validateDate(dates.get(1), 5, 5, 2011); - - dates = parseCollection(reference, "1/3 to 2/3"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 3, 2011); - validateDate(dates.get(1), 2, 3, 2011); - - dates = parseCollection(reference, "2/3 to in one week"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 2, 3, 2011); - validateDate(dates.get(1), 1, 9, 2011); - - dates = parseCollection(reference, "first day of may to last day of may"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 5, 1, 2011); - validateDate(dates.get(1), 5, 31, 2011); - - dates = parseCollection(reference, "feb 28th or 2 days after"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 2, 28, 2011); - validateDate(dates.get(1), 3, 2, 2011); - - dates = parseCollection(reference, "tomorrow at 10 and monday at 11"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 3, 2011); - validateDate(dates.get(1), 1, 3, 2011); - - dates = parseCollection(reference, "tomorrow at 10 through tues at 11"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 3, 2011); - validateDate(dates.get(1), 1, 4, 2011); - - dates = parseCollection(reference, "first day of 2009 to last day of 2009"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 1, 2009); - validateDate(dates.get(1), 12, 31, 2009); - - dates = parseCollection(reference, "first to last day of 2008"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 1, 2008); - validateDate(dates.get(1), 12, 31, 2008); - - dates = parseCollection(reference, "first to last day of september"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 9, 1, 2011); - validateDate(dates.get(1), 9, 30, 2011); - - dates = parseCollection(reference, "first to last day of this september"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 9, 1, 2011); - validateDate(dates.get(1), 9, 30, 2011); - - dates = parseCollection(reference, "first to last day of 2 septembers ago"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 9, 1, 2009); - validateDate(dates.get(1), 9, 30, 2009); - - dates = parseCollection(reference, "first to last day of 2 septembers from now"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 9, 1, 2012); - validateDate(dates.get(1), 9, 30, 2012); - - dates = parseCollection(reference, "for 5 days"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 1, 7, 2011); - - dates = parseCollection(reference, "for ten months"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 11, 2, 2011); - - dates = parseCollection(reference, "for twenty-five years"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 1, 2, 2036); - - dates = parseCollection(reference, "2 and 4 months"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 3, 2, 2011); - validateDate(dates.get(1), 5, 2, 2011); - - dates = parseCollection(reference, "in 2 to 4 months"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 3, 2, 2011); - validateDate(dates.get(1), 5, 2, 2011); - - dates = parseCollection(reference, "for 2 to 4 months"); - Assert.assertEquals(3, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 3, 2, 2011); - validateDate(dates.get(2), 5, 2, 2011); - - dates = parseCollection(reference, "next 2 to 4 months"); - Assert.assertEquals(3, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 3, 2, 2011); - validateDate(dates.get(2), 5, 2, 2011); - - dates = parseCollection(reference, "2 to 4 months from now"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 3, 2, 2011); - validateDate(dates.get(1), 5, 2, 2011); - - dates = parseCollection(reference, "last 2 to 4 months"); - Assert.assertEquals(3, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 11, 2, 2010); - validateDate(dates.get(2), 9, 2, 2010); - - dates = parseCollection(reference, "past 2 to 4 months"); - Assert.assertEquals(3, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 11, 2, 2010); - validateDate(dates.get(2), 9, 2, 2010); - - dates = parseCollection(reference, "2 to 4 months ago"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 11, 2, 2010); - validateDate(dates.get(1), 9, 2, 2010); - - dates = parseCollection(reference, "2 or 3 days ago"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 12, 31, 2010); - validateDate(dates.get(1), 12, 30, 2010); - - dates = parseCollection(reference, "1 to 2 days"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 1, 3, 2011); - validateDate(dates.get(1), 1, 4, 2011); - - dates = parseCollection(reference, "I want to go shopping in Knoxville, TN in the next five to six months."); - Assert.assertEquals(3, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 6, 2, 2011); - validateDate(dates.get(2), 7, 2, 2011); - - dates = parseCollection(reference, "I want to watch the fireworks in the next two to three months."); - Assert.assertEquals(3, dates.size()); - validateDate(dates.get(0), 1, 2, 2011); - validateDate(dates.get(1), 3, 2, 2011); - validateDate(dates.get(2), 4, 2, 2011); - - dates = parseCollection(reference, "september 7th something"); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 7, 2011); - - dates = parseCollection(reference, "september 7th something happened here"); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 7, 2011); - - dates = parseCollection(reference, "bla bla bla 2 and 4 month"); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 3, 2, 2011); - validateDate(dates.get(1), 5, 2, 2011); - } - - // https://github.org/natty/issues/38 - @Test - public void testRelativeDateDifferentTimezone() { - // Prepare - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - Parser parser = new Parser(TimeZone.getTimeZone("US/Pacific")); - // 2012, June 3, Sunday, 1 a.m. in US/Eastern GMT -4 - // Same time as - // 2012, June 2, Saturday, 10 p.m. in US/Pacific GMT -7 - Calendar earlySunday = new GregorianCalendar(2012, 5, 3, 1, 0); - calendarSource = new CalendarSource(earlySunday.getTime()); - - // Run - Date result = parser.parse("Sunday at 10am", earlySunday.getTime()).get(0).getDates().get(0); - - // Validate - // Result should be June 3, 2012 - validateDate(result, 6, 3, 2012); - - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - } - - public static void main(String[] args) { - - String value="easter '06"; - - org.apache.log4j.Logger.getRootLogger().setLevel(Level.INFO); - - Parser parser = new Parser(); - List groups = parser.parse(value); - for(DateGroup group:groups) { - System.out.println(value); - System.out.println(group.getSyntaxTree().toStringTree()); - System.out.println("line: " + group.getLine() + ", column: " + group.getPosition()); - System.out.println(group.getText()); - System.out.println(group.getDates()); - System.out.println("is time inferred: " + group.isTimeInferred()); - System.out.println("is recurring: " + group.isRecurring()); - System.out.println("recurs until: " + group.getRecursUntil()); - - System.out.println("\n** Parse Locations **"); - for(Entry> entry:group.getParseLocations().entrySet()) { - for(ParseLocation loc:entry.getValue()) { - System.out.println(loc.getRuleName() + ": " + loc.getText()); - } - } - - List conjunctionLocations = group.getParseLocations().get("conjunction"); - if(conjunctionLocations != null) { - System.out.print("\nconjunctions: "); - for(ParseLocation location:conjunctionLocations) { - System.out.print(location.getText() + " "); +class DateTest extends AbstractTest { + @BeforeAll + public static void oneTime() { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + initCalendarAndParser(); + } + + @Test + void testFormal() { + validateDate("1978-01-28", 1, 28, 1978); + validateDate("2009-10-10", 10, 10, 2009); + validateDate("1980-1-2", 1, 2, 1980); + validateDate("12/12/12", 12, 12, 2012); + validateDate("3/4", 3, 4, Calendar.getInstance().get(Calendar.YEAR)); + validateDate("sun, 11/21/2010", 11, 21, 2010); + validateDate("in october 2006", 10, 1, 2006); + validateDate("feb 1979", 2, 1, 1979); + validateDate("jan '80", 1, 1, 1980); + validateDate("2006-Jun-16", 6, 16, 2006); + validateDate("28-Feb-2010", 2, 28, 2010); + validateDate("9-Apr", 4, 9, Calendar.getInstance().get(Calendar.YEAR)); + validateDate("jan 10, '00", 1, 10, 2000); + } + + @Test + void testRelaxed() { + validateDate("oct 1, 1980", 10, 1, 1980); + validateDate("oct. 1, 1980", 10, 1, 1980); + validateDate("oct 1,1980", 10, 1, 1980); + validateDate("1st oct in the year '89", 10, 1, 1989); + validateDate("thirty first of december '80", 12, 31, 1980); + validateDate("the first of december in the year 1980", 12, 1, 1980); + validateDate("the 2 of february in the year 1980", 2, 2, 1980); + validateDate("the 2nd of february in the year 1980", 2, 2, 1980); + validateDate("the second of february in the year 1980", 2, 2, 1980); + validateDate("jan. 2nd", 1, 2, Calendar.getInstance().get(Calendar.YEAR)); + validateDate("sun, nov 21 2010", 11, 21, 2010); + validateDate("Second Monday in October 2017", 10, 9, 2017); + validateDate("2nd thursday in sept. '02", 9, 12, 2002); + } + + @Test + void testExplicitRelative() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/28/2011"); + calendarSource = new CalendarSource(reference); + + validateDate(reference, "final thursday in april", 4, 28, 2011); + validateDate(reference, "final thurs in sep", 9, 29, 2011); + validateDate(reference, "4th february ", 2, 4, 2011); + } + + @Test + void testRelative() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/28/2011"); + calendarSource = new CalendarSource(reference); + + validateDate(reference, "yesterday", 2, 27, 2011); + validateDate(reference, "tomorrow", 3, 1, 2011); + validateDate(reference, "tmr", 3, 1, 2011); + validateDate(reference, "in 3 days", 3, 3, 2011); + validateDate(reference, "3 days ago", 2, 25, 2011); + validateDate(reference, "in 3 weeks", 3, 21, 2011); + validateDate(reference, "four weeks ago", 1, 31, 2011); + validateDate(reference, "in 3 months", 5, 28, 2011); + validateDate(reference, "three months ago", 11, 28, 2010); + validateDate(reference, "in 3 years", 2, 28, 2014); + validateDate(reference, "seven years ago", 2, 28, 2004); + validateDate(reference, "60 years ago", 2, 28, 1951); + validateDate(reference, "32 days ago", 1, 27, 2011); + validateDate(reference, "320 days ago", 4, 14, 2010); + validateDate(reference, "1200 days ago", 11, 16, 2007); + validateDate(reference, "365 days from now", 2, 28, 2012); + validateDate(reference, "100 months now", 6, 28, 2019); + validateDate(reference, "100 years from now", 2, 28, 2111); + validateDate(reference, "next monday", 3, 7, 2011); + validateDate(reference, "next mon", 3, 7, 2011); + validateDate(reference, "4 mondays from now", 3, 28, 2011); + validateDate(reference, "4 mondays from today", 3, 28, 2011); + validateDate(reference, "next weekend", 3, 12, 2011); + validateDate(reference, "six mondays ago", 1, 17, 2011); + validateDate(reference, "last monday", 2, 21, 2011); + validateDate(reference, "last mon", 2, 21, 2011); + validateDate(reference, "this past mon", 2, 21, 2011); + validateDate(reference, "this coming mon", 3, 7, 2011); + validateDate(reference, "this upcoming mon", 3, 7, 2011); + validateDate(reference, "next thurs", 3, 10, 2011); + validateDate(reference, "next month", 3, 28, 2011); + validateDate(reference, "last month", 1, 28, 2011); + validateDate(reference, "next week", 3, 7, 2011); + validateDate(reference, "last week", 2, 21, 2011); + validateDate(reference, "next year", 2, 28, 2012); + validateDate(reference, "last year", 2, 28, 2010); + validateDate(reference, "tues this week", 3, 1, 2011); + validateDate(reference, "tuesday this week", 3, 1, 2011); + validateDate(reference, "tuesday next week", 3, 8, 2011); + validateDate(reference, "this september", 9, 1, 2011); + validateDate(reference, "in a september", 9, 1, 2011); + validateDate(reference, "in an october", 10, 1, 2011); + validateDate(reference, "september", 9, 1, 2011); + validateDate(reference, "last september", 9, 1, 2010); + validateDate(reference, "next september", 9, 1, 2011); + validateDate(reference, "january", 1, 1, 2011); + validateDate(reference, "last january", 1, 1, 2011); + validateDate(reference, "next january", 1, 1, 2012); + validateDate(reference, "next february", 2, 1, 2012); + validateDate(reference, "last february", 2, 1, 2010); + validateDate(reference, "february ", 2, 1, 2011); + validateDate(reference, "in a year", 2, 28, 2012); + validateDate(reference, "in a week", 3, 7, 2011); + validateDate(reference, "the saturday after next", 3, 19, 2011); + validateDate(reference, "the monday after next", 3, 14, 2011); + validateDate(reference, "the monday after next monday", 3, 14, 2011); + validateDate(reference, "the monday before May 25", 5, 23, 2011); + validateDate(reference, "the 2nd monday before May 25", 5, 16, 2011); + validateDate(reference, "3 mondays after May 25", 6, 13, 2011); + validateDate(reference, "tuesday before last", 2, 15, 2011); + validateDate(reference, "a week from now", 3, 7, 2011); + validateDate(reference, "a month from today", 3, 28, 2011); + validateDate(reference, "a week after this friday", 3, 11, 2011); + validateDate(reference, "a week from this friday", 3, 11, 2011); + validateDate(reference, "two weeks from this friday", 3, 18, 2011); + validateDate(reference, "the second week after this friday", 3, 18, 2011); + validateDate(reference, "It's gonna snow! How about skiing tomorrow", 3, 1, 2011); + validateDate(reference, "A week on tuesday", 3, 8, 2011); + validateDate(reference, "A month ago", 1, 28, 2011); + validateDate(reference, "A week ago", 2, 21, 2011); + validateDate(reference, "A year ago", 2, 28, 2010); + validateDate(reference, "this month", 2, 28, 2011); + validateDate(reference, "current month", 2, 28, 2011); + validateDate(reference, "current year", 2, 28, 2011); + validateDate(reference, "first monday in 1 month", 3, 7, 2011); + validateDate(reference, "first monday of month in 1 month", 3, 7, 2011); + validateDate(reference, "first monday of 1 month", 3, 7, 2011); + validateDate(reference, "first monday in 2 months", 4, 4, 2011); + validateDate(reference, "first monday of 2 months", 4, 4, 2011); + validateDate(reference, "first monday of month 2 months", 4, 4, 2011); + validateDate(reference, "first monday of month in 2 months", 4, 4, 2011); + validateDate(reference, "first monday in 3 months", 5, 2, 2011); + validateDate(reference, "first monday of 3 months", 5, 2, 2011); + validateDate(reference, "first monday of month in 3 months", 5, 2, 2011); + validateDate(reference, "1 year 9 months from now", 11, 28, 2012); + validateDate(reference, "1 year 9 months 1 day from now", 11, 29, 2012); + validateDate(reference, "2 years 4 months ago", 10, 28, 2008); + validateDate(reference, "2 years 4 months 5 days ago", 10, 23, 2008); + } + + @Test + void testRange() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("1/02/2011"); + calendarSource = new CalendarSource(reference); + + List dates = parseCollection(reference, "monday to friday"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 3, 2011); + validateDate(dates.get(1), 1, 7, 2011); + + dates = parseCollection(reference, "1999-12-31 to tomorrow"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 12, 31, 1999); + validateDate(dates.get(1), 1, 3, 2011); + + dates = parseCollection(reference, "now to 2010-01-01"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 1, 1, 2010); + + dates = parseCollection(reference, "jan 1 to 2"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 1, 2011); + validateDate(dates.get(1), 1, 2, 2011); + + dates = parseCollection(reference, "may 2nd to 5th"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 5, 2, 2011); + validateDate(dates.get(1), 5, 5, 2011); + + dates = parseCollection(reference, "1/3 to 2/3"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 3, 2011); + validateDate(dates.get(1), 2, 3, 2011); + + dates = parseCollection(reference, "2/3 to in one week"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 2, 3, 2011); + validateDate(dates.get(1), 1, 9, 2011); + + dates = parseCollection(reference, "first day of may to last day of may"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 5, 1, 2011); + validateDate(dates.get(1), 5, 31, 2011); + + dates = parseCollection(reference, "feb 28th or 2 days after"); + assertThat(dates).hasSize(2); + validateDate(dates.get(0), 2, 28, 2011); + validateDate(dates.get(1), 3, 2, 2011); + + dates = parseCollection(reference, "tomorrow at 10 and monday at 11"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 3, 2011); + validateDate(dates.get(1), 1, 3, 2011); + + dates = parseCollection(reference, "tomorrow at 10 through tues at 11"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 3, 2011); + validateDate(dates.get(1), 1, 4, 2011); + + dates = parseCollection(reference, "first day of 2009 to last day of 2009"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 1, 2009); + validateDate(dates.get(1), 12, 31, 2009); + + dates = parseCollection(reference, "first to last day of 2008"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 1, 2008); + validateDate(dates.get(1), 12, 31, 2008); + + dates = parseCollection(reference, "first to last day of september"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 9, 1, 2011); + validateDate(dates.get(1), 9, 30, 2011); + + dates = parseCollection(reference, "first to last day of this september"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 9, 1, 2011); + validateDate(dates.get(1), 9, 30, 2011); + + dates = parseCollection(reference, "first to last day of 2 septembers ago"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 9, 1, 2009); + validateDate(dates.get(1), 9, 30, 2009); + + dates = parseCollection(reference, "first to last day of 2 septembers from now"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 9, 1, 2012); + validateDate(dates.get(1), 9, 30, 2012); + + dates = parseCollection(reference, "for 5 days"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 1, 7, 2011); + + dates = parseCollection(reference, "for ten months"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 11, 2, 2011); + + dates = parseCollection(reference, "for twenty-five years"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 1, 2, 2036); + + dates = parseCollection(reference, "2 and 4 months"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 3, 2, 2011); + validateDate(dates.get(1), 5, 2, 2011); + + dates = parseCollection(reference, "in 2 to 4 months"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 3, 2, 2011); + validateDate(dates.get(1), 5, 2, 2011); + + dates = parseCollection(reference, "for 2 to 4 months"); + assertThat(dates).hasSize(3); + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 3, 2, 2011); + validateDate(dates.get(2), 5, 2, 2011); + + dates = parseCollection(reference, "next 2 to 4 months"); + assertThat(dates).hasSize(3); + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 3, 2, 2011); + validateDate(dates.get(2), 5, 2, 2011); + + dates = parseCollection(reference, "2 to 4 months from now"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 3, 2, 2011); + validateDate(dates.get(1), 5, 2, 2011); + + dates = parseCollection(reference, "last 2 to 4 months"); + assertThat(dates).hasSize(3); + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 11, 2, 2010); + validateDate(dates.get(2), 9, 2, 2010); + + dates = parseCollection(reference, "past 2 to 4 months"); + assertThat(dates).hasSize(3); + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 11, 2, 2010); + validateDate(dates.get(2), 9, 2, 2010); + + dates = parseCollection(reference, "2 to 4 months ago"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 11, 2, 2010); + validateDate(dates.get(1), 9, 2, 2010); + + dates = parseCollection(reference, "2 or 3 days ago"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 12, 31, 2010); + validateDate(dates.get(1), 12, 30, 2010); + + dates = parseCollection(reference, "1 to 2 days"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 1, 3, 2011); + validateDate(dates.get(1), 1, 4, 2011); + + dates = parseCollection(reference, "I want to go shopping in Knoxville, TN in the next five to six months."); + assertThat(dates).hasSize(3); + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 6, 2, 2011); + validateDate(dates.get(2), 7, 2, 2011); + + dates = parseCollection(reference, "I want to watch the fireworks in the next two to three months."); + assertThat(dates).hasSize(3); + validateDate(dates.get(0), 1, 2, 2011); + validateDate(dates.get(1), 3, 2, 2011); + validateDate(dates.get(2), 4, 2, 2011); + + dates = parseCollection(reference, "september 7th something"); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 7, 2011); + + dates = parseCollection(reference, "september 7th something happened here"); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 7, 2011); + + dates = parseCollection(reference, "bla bla bla 2 and 4 month"); + assertThat(dates).hasSize(2); + + validateDate(dates.get(0), 3, 2, 2011); + validateDate(dates.get(1), 5, 2, 2011); + } + + // https://github.org/natty/issues/38 + @Test + void testRelativeDateDifferentTimezone() { + // Prepare + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + Parser parser = new Parser(TimeZone.getTimeZone("US/Pacific")); + // 2012, June 3, Sunday, 1 a.m. in US/Eastern GMT -4 + // Same time as + // 2012, June 2, Saturday, 10 p.m. in US/Pacific GMT -7 + Calendar earlySunday = new GregorianCalendar(2012, 5, 3, 1, 0); + calendarSource = new CalendarSource(earlySunday.getTime()); + + // Run + Date result = parser.parse("Sunday at 10am", earlySunday.getTime()).get(0).getDates().get(0); + + // Validate + // Result should be June 3, 2012 + validateDate(result, 6, 3, 2012); + + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + } + + public static void main(String[] args) { + + String value = "easter '06"; + + Parser parser = new Parser(); + List groups = parser.parse(value); + for (DateGroup group : groups) { + System.out.println(value); + System.out.println(group.getSyntaxTree().toStringTree()); + System.out.println("line: " + group.getLine() + ", column: " + group.getPosition()); + System.out.println(group.getText()); + System.out.println(group.getDates()); + System.out.println("is time inferred: " + group.isTimeInferred()); + System.out.println("is recurring: " + group.isRecurring()); + System.out.println("recurs until: " + group.getRecursUntil()); + + System.out.println("\n** Parse Locations **"); + for (Entry> entry : group.getParseLocations().entrySet()) { + for (ParseLocation loc : entry.getValue()) { + System.out.println(loc.getRuleName() + ": " + loc.getText()); + } + } + + List conjunctionLocations = group.getParseLocations().get("conjunction"); + if (conjunctionLocations != null) { + System.out.print("\nconjunctions: "); + for (ParseLocation location : conjunctionLocations) { + System.out.print(location.getText() + " "); + } + } + System.out.print("\n\n"); } - } - System.out.print("\n\n"); } - } } diff --git a/src/test/java/org/natty/DateTimeTest.java b/src/test/java/org/natty/DateTimeTest.java index a775fa3a..f9bebca1 100644 --- a/src/test/java/org/natty/DateTimeTest.java +++ b/src/test/java/org/natty/DateTimeTest.java @@ -1,8 +1,7 @@ package org.natty; -import org.junit.Assert; -import org.junit.BeforeClass; -import org.junit.Test; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; import java.sql.Timestamp; import java.text.DateFormat; @@ -12,159 +11,161 @@ import java.util.Locale; import java.util.TimeZone; +import static org.assertj.core.api.Assertions.assertThat; + /** * Runs the parser through the various datetime formats * * @author Joe Stelmach */ -public class DateTimeTest extends AbstractTest { - @BeforeClass - public static void oneTime() { - Locale.setDefault(Locale.US); - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - initCalendarAndParser(); - } - - @Test - public void testSpecific() { - final LocalDateTime refDateTime = LocalDateTime.of(2012, 5, 19, 12, 00, 00); - Date reference = Timestamp.valueOf(refDateTime); - calendarSource = new CalendarSource(reference); - - validateDateTime(reference, "1st oct in the year '89 1300 hours", 10, 1, 1989, 13, 0, 0); - validateDateTime(reference, "1st oct in the year '89 at 1300 hours", 10, 1, 1989, 13, 0, 0); - validateDateTime(reference, "1st oct in the year '89, 13:00", 10, 1, 1989, 13, 0, 0); - validateDateTime(reference, "1st oct in the year '89,13:00", 10, 1, 1989, 13, 0, 0); - validateDateTime(reference, "1st oct in the year '89, at 13:00", 10, 1, 1989, 13, 0, 0); - validateDateTime(reference, "3am on oct 1st 2010", 10, 1, 2010, 3, 0, 0); - validateDateTime(reference, "3am, october first 2010", 10, 1, 2010, 3, 0, 0); - validateDateTime(reference, "3am,october first 2010", 10, 1, 2010, 3, 0, 0); - validateDateTime(reference, "3am, on october first 2010", 10, 1, 2010, 3, 0, 0); - validateDateTime(reference, "3am october first 2010", 10, 1, 2010, 3, 0, 0); - validateDateTime(reference, "April 20, 10am", 4, 20, 2012, 10, 0, 0); - validateDateTime(reference, "April 20 10", 4, 20, 2012, 10, 0, 0); - validateDateTime(reference, "April 20 at 10 am", 4, 20, 2012, 10, 0, 0); - validateDateTime(reference, "Mar 16, 2015 3:33:39 PM", 3, 16, 2015, 15, 33, 39); - } - - @Test - public void testRelative() { - final LocalDateTime refDateTime = LocalDateTime.of(2011, 2, 24, 0, 0, 0); - Date reference = Timestamp.valueOf(refDateTime); - calendarSource = new CalendarSource(reference); - - validateDateTime(reference, "seven years ago at 3pm", 2, 24, 2004, 15, 0, 0); - validateDateTime(reference, "next wed. at 5pm", 3, 2, 2011, 17, 0, 0); - validateDateTime(reference, "3 days after next wed at 6a", 3, 5, 2011, 6, 0, 0); - validateDateTime(reference, "8pm on the sunday after next wed", 3, 6, 2011, 20, 0, 0); - validateDateTime(reference, "two days after today @ 6p", 2, 26, 2011, 18, 0, 0); - validateDateTime(reference, "two days from today @ 6p", 2, 26, 2011, 18, 0, 0); - validateDateTime(reference, "11:59 on 3 sundays after next wed", 3, 20, 2011, 11, 59, 0); - validateDateTime(reference, "the day after next 6pm", 2, 26, 2011, 18, 0, 0); - validateDateTime(reference, "the week after next 2a", 3, 10, 2011, 2, 0, 0); - validateDateTime(reference, "the month after next 0700", 4, 24, 2011, 7, 0, 0); - validateDateTime(reference, "the year after next @ midnight", 2, 24, 2013, 0, 0, 0); - validateDateTime(reference, "wed of the week after next in the evening", 3, 9, 2011, 19, 0, 0); - validateDateTime(reference, "the 28th of the month after next in the morning", 4, 28, 2011, 8, 0, 0); - validateDateTime(reference, "this morning", 2, 24, 2011, 8, 0, 0); - validateDateTime(reference, "this afternoon", 2, 24, 2011, 12, 0, 0); - validateDateTime(reference, "this evening", 2, 24, 2011, 19, 0, 0); - validateDateTime(reference, "today evening", 2, 24, 2011, 19, 0, 0); - validateDateTime(reference, "tomorrow evening", 2, 25, 2011, 19, 0, 0); - validateDateTime(reference, "friday evening", 2, 25, 2011, 19, 0, 0); - validateDateTime(reference, "monday 6 in the morning", 2, 28, 2011, 6, 0, 0); - validateDateTime(reference, "monday 4 in the afternoon", 2, 28, 2011, 16, 0, 0); - validateDateTime(reference, "monday 9 in the evening", 2, 28, 2011, 21, 0, 0); - validateDateTime(reference, "tomorrow @ noon", 2, 25, 2011, 12, 0, 0); - validateDateTime(reference, "Acknowledged. Let's meet at 9pm.", 2, 24, 2011, 21, 0, 0); - validateDateTime(reference, "tuesday,\u00A012:50 PM", 3, 1, 2011, 12, 50, 0); - validateDateTime(reference, "tonight at 6:30", 2, 24, 2011, 18, 30, 0); - validateDateTime(reference, "tonight at 6", 2, 24, 2011, 18, 0, 0); - validateDateTime(reference, "tonight at 2", 2, 25, 2011, 2, 0, 0); - validateDateTime(reference, "tonight at 4:59", 2, 25, 2011, 4, 59, 0); - validateDateTime(reference, "tonight at 5", 2, 24, 2011, 17, 0, 0); - validateDateTime(reference, "this evening at 5", 2, 24, 2011, 17, 0, 0); - validateDateTime(reference, "this evening at 2", 2, 25, 2011, 2, 0, 0); - validateDateTime(reference, "tomorrow evening at 5", 2, 25, 2011, 17, 0, 0); - validateDateTime(reference, "wed evening at 8:30", 3, 2, 2011, 20, 30, 0); - validateDateTime(reference, "750 minutes from now", 2, 24, 2011, 12, 30, 0); - validateDateTime(reference, "1500 minutes from now", 2, 25, 2011, 1, 0, 0); - } - - @Test - public void testRange() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("6/12/2010"); - calendarSource = new CalendarSource(reference); - - List dates = parseCollection(reference, "2009-03-10 9:00 to 11:00"); - Assert.assertEquals(2, dates.size()); - validateDateTime(dates.get(0), 3, 10, 2009, 9, 0, 0); - validateDateTime(dates.get(1), 3, 10, 2009, 11, 0, 0); - - dates = parseCollection(reference, "26 oct 10:00 am to 11:00 am"); - Assert.assertEquals(2, dates.size()); - validateDateTime(dates.get(0), 10, 26, 2010, 10, 0, 0); - validateDateTime(dates.get(1), 10, 26, 2010, 11, 0, 0); - - dates = parseCollection(reference, "16:00 nov 6 to 17:00"); - Assert.assertEquals(2, dates.size()); - validateDateTime(dates.get(0), 11, 6, 2010, 16, 0, 0); - validateDateTime(dates.get(1), 11, 6, 2010, 17, 0, 0); - - dates = parseCollection(reference, "6am dec 5 to 7am"); - Assert.assertEquals(2, dates.size()); - validateDateTime(dates.get(0), 12, 5, 2010, 6, 0, 0); - validateDateTime(dates.get(1), 12, 5, 2010, 7, 0, 0); - - dates = parseCollection(reference, "3/3 21:00 to in 5 days"); - Assert.assertEquals(2, dates.size()); - validateDateTime(dates.get(0), 3, 3, 2010, 21, 0, 0); - validateDateTime(dates.get(1), 6, 17, 2010, 21, 0, 0); - - dates = parseCollection(reference, "November 20 2 p.m. to 3 p.m"); - Assert.assertEquals(2, dates.size()); - validateDateTime(dates.get(0), 11, 20, 2010, 14, 0, 0); - validateDateTime(dates.get(1), 11, 20, 2010, 15, 0, 0); - - dates = parseCollection(reference, "November 20 2 p.m. - 3 p.m."); - Assert.assertEquals(2, dates.size()); - validateDateTime(dates.get(0), 11, 20, 2010, 14, 0, 0); - validateDateTime(dates.get(1), 11, 20, 2010, 15, 0, 0); - } - - @Test - public void testList() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("05/19/2012"); - calendarSource = new CalendarSource(reference); - - List dates = - parseCollection(reference, "June 25th at 9am and July 2nd at 10am and August 16th at 11am"); - Assert.assertEquals(3, dates.size()); - validateDateTime(dates.get(0), 6, 25, 2012, 9, 0, 0); - validateDateTime(dates.get(1), 7, 2, 2012, 10, 0, 0); - validateDateTime(dates.get(2), 8, 16, 2012, 11, 0, 0); - - dates = parseCollection(reference, "June 25th at 10am and July 2nd and August 16th"); - Assert.assertEquals(3, dates.size()); - validateDateTime(dates.get(0), 6, 25, 2012, 10, 0, 0); - validateDateTime(dates.get(1), 7, 2, 2012, 10, 0, 0); - validateDateTime(dates.get(2), 8, 16, 2012, 10, 0, 0); - - dates = parseCollection(reference, "June 25th and July 2nd at 10am and August 16th"); - Assert.assertEquals(3, dates.size()); - validateDateTime(dates.get(0), 6, 25, 2012, 10, 0, 0); - validateDateTime(dates.get(1), 7, 2, 2012, 10, 0, 0); - validateDateTime(dates.get(2), 8, 16, 2012, 10, 0, 0); - - dates = parseCollection(reference, "June 25th and July 2nd and August 16th at 10am"); - Assert.assertEquals(3, dates.size()); - validateDateTime(dates.get(0), 6, 25, 2012, 10, 0, 0); - validateDateTime(dates.get(1), 7, 2, 2012, 10, 0, 0); - validateDateTime(dates.get(2), 8, 16, 2012, 10, 0, 0); - - dates = parseCollection(reference, "slept from 3:30 a.m. To 9:41 a.m. On April 10th"); - Assert.assertEquals(2, dates.size()); - validateDateTime(dates.get(0), 4, 10, 2012, 3, 30, 0); - validateDateTime(dates.get(1), 4, 10, 2012, 9, 41, 0); - } +class DateTimeTest extends AbstractTest { + @BeforeAll + public static void oneTime() { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + initCalendarAndParser(); + } + + @Test + void testSpecific() { + final LocalDateTime refDateTime = LocalDateTime.of(2012, 5, 19, 12, 0, 0); + Date reference = Timestamp.valueOf(refDateTime); + calendarSource = new CalendarSource(reference); + + validateDateTime(reference, "1st oct in the year '89 1300 hours", 10, 1, 1989, 13, 0, 0); + validateDateTime(reference, "1st oct in the year '89 at 1300 hours", 10, 1, 1989, 13, 0, 0); + validateDateTime(reference, "1st oct in the year '89, 13:00", 10, 1, 1989, 13, 0, 0); + validateDateTime(reference, "1st oct in the year '89,13:00", 10, 1, 1989, 13, 0, 0); + validateDateTime(reference, "1st oct in the year '89, at 13:00", 10, 1, 1989, 13, 0, 0); + validateDateTime(reference, "3am on oct 1st 2010", 10, 1, 2010, 3, 0, 0); + validateDateTime(reference, "3am, october first 2010", 10, 1, 2010, 3, 0, 0); + validateDateTime(reference, "3am,october first 2010", 10, 1, 2010, 3, 0, 0); + validateDateTime(reference, "3am, on october first 2010", 10, 1, 2010, 3, 0, 0); + validateDateTime(reference, "3am october first 2010", 10, 1, 2010, 3, 0, 0); + validateDateTime(reference, "April 20, 10am", 4, 20, 2012, 10, 0, 0); + validateDateTime(reference, "April 20 10", 4, 20, 2012, 10, 0, 0); + validateDateTime(reference, "April 20 at 10 am", 4, 20, 2012, 10, 0, 0); + validateDateTime(reference, "Mar 16, 2015 3:33:39 PM", 3, 16, 2015, 15, 33, 39); + } + + @Test + public void testRelative() { + final LocalDateTime refDateTime = LocalDateTime.of(2011, 2, 24, 0, 0, 0); + Date reference = Timestamp.valueOf(refDateTime); + calendarSource = new CalendarSource(reference); + + validateDateTime(reference, "seven years ago at 3pm", 2, 24, 2004, 15, 0, 0); + validateDateTime(reference, "next wed. at 5pm", 3, 2, 2011, 17, 0, 0); + validateDateTime(reference, "3 days after next wed at 6a", 3, 5, 2011, 6, 0, 0); + validateDateTime(reference, "8pm on the sunday after next wed", 3, 6, 2011, 20, 0, 0); + validateDateTime(reference, "two days after today @ 6p", 2, 26, 2011, 18, 0, 0); + validateDateTime(reference, "two days from today @ 6p", 2, 26, 2011, 18, 0, 0); + validateDateTime(reference, "11:59 on 3 sundays after next wed", 3, 20, 2011, 11, 59, 0); + validateDateTime(reference, "the day after next 6pm", 2, 26, 2011, 18, 0, 0); + validateDateTime(reference, "the week after next 2a", 3, 10, 2011, 2, 0, 0); + validateDateTime(reference, "the month after next 0700", 4, 24, 2011, 7, 0, 0); + validateDateTime(reference, "the year after next @ midnight", 2, 24, 2013, 0, 0, 0); + validateDateTime(reference, "wed of the week after next in the evening", 3, 9, 2011, 19, 0, 0); + validateDateTime(reference, "the 28th of the month after next in the morning", 4, 28, 2011, 8, 0, 0); + validateDateTime(reference, "this morning", 2, 24, 2011, 8, 0, 0); + validateDateTime(reference, "this afternoon", 2, 24, 2011, 12, 0, 0); + validateDateTime(reference, "this evening", 2, 24, 2011, 19, 0, 0); + validateDateTime(reference, "today evening", 2, 24, 2011, 19, 0, 0); + validateDateTime(reference, "tomorrow evening", 2, 25, 2011, 19, 0, 0); + validateDateTime(reference, "friday evening", 2, 25, 2011, 19, 0, 0); + validateDateTime(reference, "monday 6 in the morning", 2, 28, 2011, 6, 0, 0); + validateDateTime(reference, "monday 4 in the afternoon", 2, 28, 2011, 16, 0, 0); + validateDateTime(reference, "monday 9 in the evening", 2, 28, 2011, 21, 0, 0); + validateDateTime(reference, "tomorrow @ noon", 2, 25, 2011, 12, 0, 0); + validateDateTime(reference, "Acknowledged. Let's meet at 9pm.", 2, 24, 2011, 21, 0, 0); + validateDateTime(reference, "tuesday,\u00A012:50 PM", 3, 1, 2011, 12, 50, 0); + validateDateTime(reference, "tonight at 6:30", 2, 24, 2011, 18, 30, 0); + validateDateTime(reference, "tonight at 6", 2, 24, 2011, 18, 0, 0); + validateDateTime(reference, "tonight at 2", 2, 25, 2011, 2, 0, 0); + validateDateTime(reference, "tonight at 4:59", 2, 25, 2011, 4, 59, 0); + validateDateTime(reference, "tonight at 5", 2, 24, 2011, 17, 0, 0); + validateDateTime(reference, "this evening at 5", 2, 24, 2011, 17, 0, 0); + validateDateTime(reference, "this evening at 2", 2, 25, 2011, 2, 0, 0); + validateDateTime(reference, "tomorrow evening at 5", 2, 25, 2011, 17, 0, 0); + validateDateTime(reference, "wed evening at 8:30", 3, 2, 2011, 20, 30, 0); + validateDateTime(reference, "750 minutes from now", 2, 24, 2011, 12, 30, 0); + validateDateTime(reference, "1500 minutes from now", 2, 25, 2011, 1, 0, 0); + } + + @Test + public void testRange() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("6/12/2010"); + calendarSource = new CalendarSource(reference); + + List dates = parseCollection(reference, "2009-03-10 9:00 to 11:00"); + assertThat(dates).hasSize(2); + validateDateTime(dates.get(0), 3, 10, 2009, 9, 0, 0); + validateDateTime(dates.get(1), 3, 10, 2009, 11, 0, 0); + + dates = parseCollection(reference, "26 oct 10:00 am to 11:00 am"); + assertThat(dates).hasSize(2); + validateDateTime(dates.get(0), 10, 26, 2010, 10, 0, 0); + validateDateTime(dates.get(1), 10, 26, 2010, 11, 0, 0); + + dates = parseCollection(reference, "16:00 nov 6 to 17:00"); + assertThat(dates).hasSize(2); + validateDateTime(dates.get(0), 11, 6, 2010, 16, 0, 0); + validateDateTime(dates.get(1), 11, 6, 2010, 17, 0, 0); + + dates = parseCollection(reference, "6am dec 5 to 7am"); + assertThat(dates).hasSize(2); + validateDateTime(dates.get(0), 12, 5, 2010, 6, 0, 0); + validateDateTime(dates.get(1), 12, 5, 2010, 7, 0, 0); + + dates = parseCollection(reference, "3/3 21:00 to in 5 days"); + assertThat(dates).hasSize(2); + validateDateTime(dates.get(0), 3, 3, 2010, 21, 0, 0); + validateDateTime(dates.get(1), 6, 17, 2010, 21, 0, 0); + + dates = parseCollection(reference, "November 20 2 p.m. to 3 p.m"); + assertThat(dates).hasSize(2); + validateDateTime(dates.get(0), 11, 20, 2010, 14, 0, 0); + validateDateTime(dates.get(1), 11, 20, 2010, 15, 0, 0); + + dates = parseCollection(reference, "November 20 2 p.m. - 3 p.m."); + assertThat(dates).hasSize(2); + validateDateTime(dates.get(0), 11, 20, 2010, 14, 0, 0); + validateDateTime(dates.get(1), 11, 20, 2010, 15, 0, 0); + } + + @Test + void testList() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("05/19/2012"); + calendarSource = new CalendarSource(reference); + + List dates = + parseCollection(reference, "June 25th at 9am and July 2nd at 10am and August 16th at 11am"); + assertThat(dates).hasSize(3); + validateDateTime(dates.get(0), 6, 25, 2012, 9, 0, 0); + validateDateTime(dates.get(1), 7, 2, 2012, 10, 0, 0); + validateDateTime(dates.get(2), 8, 16, 2012, 11, 0, 0); + + dates = parseCollection(reference, "June 25th at 10am and July 2nd and August 16th"); + assertThat(dates).hasSize(3); + validateDateTime(dates.get(0), 6, 25, 2012, 10, 0, 0); + validateDateTime(dates.get(1), 7, 2, 2012, 10, 0, 0); + validateDateTime(dates.get(2), 8, 16, 2012, 10, 0, 0); + + dates = parseCollection(reference, "June 25th and July 2nd at 10am and August 16th"); + assertThat(dates).hasSize(3); + validateDateTime(dates.get(0), 6, 25, 2012, 10, 0, 0); + validateDateTime(dates.get(1), 7, 2, 2012, 10, 0, 0); + validateDateTime(dates.get(2), 8, 16, 2012, 10, 0, 0); + + dates = parseCollection(reference, "June 25th and July 2nd and August 16th at 10am"); + assertThat(dates).hasSize(3); + validateDateTime(dates.get(0), 6, 25, 2012, 10, 0, 0); + validateDateTime(dates.get(1), 7, 2, 2012, 10, 0, 0); + validateDateTime(dates.get(2), 8, 16, 2012, 10, 0, 0); + + dates = parseCollection(reference, "slept from 3:30 a.m. To 9:41 a.m. On April 10th"); + assertThat(dates).hasSize(2); + validateDateTime(dates.get(0), 4, 10, 2012, 3, 30, 0); + validateDateTime(dates.get(1), 4, 10, 2012, 9, 41, 0); + } } diff --git a/src/test/java/org/natty/IcsTest.java b/src/test/java/org/natty/IcsTest.java index 78e16970..5314878a 100644 --- a/src/test/java/org/natty/IcsTest.java +++ b/src/test/java/org/natty/IcsTest.java @@ -1,7 +1,7 @@ package org.natty; -import org.junit.BeforeClass; -import org.junit.Test; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; import java.text.DateFormat; import java.util.Date; @@ -10,144 +10,144 @@ public class IcsTest extends AbstractTest { - - @BeforeClass - public static void oneTime() { - Locale.setDefault(Locale.US); - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - initCalendarAndParser(); - } - - @Test - public void testUpcomingSeason() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("5/05/2011"); - calendarSource = new CalendarSource(reference); - - validateDate(reference, "spring", 3, 20, 2012); - validateDate(reference, "summer", 6, 21, 2011); - validateDate(reference, "fall", 9, 23, 2011); - validateDate(reference, "autumn", 9, 23, 2011); - validateDate(reference, "winter", 12, 22, 2011); - } - - @Test - public void testUpcomingHoliday() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); - calendarSource = new CalendarSource(reference); - - validateDate(reference, "april fool's day", 4, 1, 2012); - validateDate(reference, "black friday", 11, 25, 2011); - validateDate(reference, "christmas", 12, 25, 2011); - validateDate(reference, "christmas eve", 12, 24, 2011); - validateDate(reference, "columbus day", 10, 8, 2012); - validateDate(reference, "earth day", 4, 22, 2012); - validateDate(reference, "easter", 4, 8, 2012); - validateDate(reference, "father's day", 6, 17, 2012); - validateDate(reference, "flag day", 6, 14, 2012); - validateDate(reference, "good friday", 4, 6, 2012); - validateDate(reference, "groundhog day", 2, 2, 2012); - validateDate(reference, "halloween", 10, 31, 2012); - validateDate(reference, "independence day", 7, 4, 2012); - validateDate(reference, "kwanzaa", 12, 26, 2011); - validateDate(reference, "labor day", 9, 3, 2012); - validateDate(reference, "mlk day", 1, 16, 2012); - validateDate(reference, "memorial day", 5, 28, 2012); - validateDate(reference, "mother's day", 5, 13, 2012); - validateDate(reference, "new year's day", 1, 1, 2012); - validateDate(reference, "new year's eve", 12, 31, 2011); - validateDate(reference, "patriot day", 9, 11, 2012); - validateDate(reference, "president's day", 2, 20, 2012); - validateDate(reference, "st patty's day", 3, 17, 2012); - validateDate(reference, "tax day", 4, 15, 2012); - validateDate(reference, "thanksgiving", 11, 24, 2011); - validateDate(reference, "election day", 11, 8, 2011); - validateDate(reference, "valentine day", 2, 14, 2012); - validateDate(reference, "veterans day", 11, 11, 2011); - } - - @Test - public void testRelativeHolidays() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); - calendarSource = new CalendarSource(reference); - - validateDate(reference, "2 black fridays from now", 11, 23, 2012); - validateDate(reference, "three memorial days ago", 5, 25, 2009); - } - - @Test - public void testSeasonsByYear() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); - calendarSource = new CalendarSource(reference); - - validateDate(reference, "spring 2010", 3, 20, 2010); - validateDate(reference, "spring 2018", 3, 20, 2018); - validateDate(reference, "spring 1928", 3, 20, 1928); - - validateDate(reference, "summer 2012", 6, 20, 2012); - validateDate(reference, "summer 2015", 6, 21, 2015); - validateDate(reference, "summer 1960", 6, 21, 1960); - - validateDate(reference, "fall 2011", 9, 23, 2011); - validateDate(reference, "fall 2012", 9, 22, 2012); - validateDate(reference, "autumn 2016", 9, 22, 2016); - validateDate(reference, "autumn 1800", 9, 23, 1800); - - validateDate(reference, "winter 2016", 12, 21, 2016); - validateDate(reference, "winter 2011", 12, 22, 2011); - validateDate(reference, "winter 1900", 12, 22, 1900); - } - - @Test - public void testHolidaysByYear() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); - calendarSource = new CalendarSource(reference); - - validateDate(reference, "april fool's day 2000", 4, 1, 2000); - validateDate(reference, "black friday 2001", 11, 23, 2001); - validateDate(reference, "christmas 2002", 12, 25, 2002); - validateDate(reference, "christmas eve 2003", 12, 24, 2003); - validateDate(reference, "columbus day 2010", 10, 11, 2010); - validateDate(reference, "earth day 2005", 4, 22, 2005); - validateDate(reference, "easter '06", 4, 16, 2006); - validateDate(reference, "father's day '07", 6, 17, 2007); - validateDate(reference, "flag day '08", 6, 14, 2008); - validateDate(reference, "good friday '09", 4, 10, 2009); - validateDate(reference, "groundhog day '10", 2, 2, 2010); - validateDate(reference, "halloween '11", 10, 31, 2011); - validateDate(reference, "independence day '12", 7, 4, 2012); - validateDate(reference, "kwanzaa '13", 12, 26, 2013); - validateDate(reference, "labor day '14", 9, 1, 2014); - validateDate(reference, "mlk day '15", 1, 19, 2015); - validateDate(reference, "memorial day '16", 5, 30, 2016); - validateDate(reference, "mother's day 2017", 5, 14, 2017); - validateDate(reference, "new year's day 2018", 1, 1, 2018); - validateDate(reference, "new year's eve 2019", 12, 31, 2018); - validateDate(reference, "patriot day 2020", 9, 11, 2020); - validateDate(reference, "president's day 2019", 2, 18, 2019); - validateDate(reference, "st patty's day 2018", 3, 17, 2018); - validateDate(reference, "tax day 2017", 4, 15, 2017); - validateDate(reference, "thanksgiving 2016", 11, 24, 2016); - validateDate(reference, "election day 2015", 11, 3, 2015); - validateDate(reference, "valentine day 2014", 2, 14, 2014); - validateDate(reference, "veterans day 2013", 11, 11, 2013); - } - - @Test - public void testHolidaysWithModifiers() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); - calendarSource = new CalendarSource(reference); - - validateDate(reference, "four days before veterans day 2013", 11, 7, 2013); - validateDate(reference, "two days after two thanksgivings from now", 11, 24, 2012); - } - - @Test - public void testSeasonsWithModifiers() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); - calendarSource = new CalendarSource(reference); - - validateDate(reference, "four days before fall 2013", 9, 18, 2013); - validateDate(reference, "two days after two summers from now", 6, 23, 2013); - validateDate(reference, "three summers ago", 6, 21, 2009); - } + + @BeforeAll + public static void oneTime() { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + initCalendarAndParser(); + } + + @Test + void testUpcomingSeason() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("5/05/2011"); + calendarSource = new CalendarSource(reference); + + validateDate(reference, "spring", 3, 20, 2012); + validateDate(reference, "summer", 6, 21, 2011); + validateDate(reference, "fall", 9, 23, 2011); + validateDate(reference, "autumn", 9, 23, 2011); + validateDate(reference, "winter", 12, 22, 2011); + } + + @Test + public void testUpcomingHoliday() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); + calendarSource = new CalendarSource(reference); + + validateDate(reference, "april fool's day", 4, 1, 2012); + validateDate(reference, "black friday", 11, 25, 2011); + validateDate(reference, "christmas", 12, 25, 2011); + validateDate(reference, "christmas eve", 12, 24, 2011); + validateDate(reference, "columbus day", 10, 8, 2012); + validateDate(reference, "earth day", 4, 22, 2012); + validateDate(reference, "easter", 4, 8, 2012); + validateDate(reference, "father's day", 6, 17, 2012); + validateDate(reference, "flag day", 6, 14, 2012); + validateDate(reference, "good friday", 4, 6, 2012); + validateDate(reference, "groundhog day", 2, 2, 2012); + validateDate(reference, "halloween", 10, 31, 2012); + validateDate(reference, "independence day", 7, 4, 2012); + validateDate(reference, "kwanzaa", 12, 26, 2011); + validateDate(reference, "labor day", 9, 3, 2012); + validateDate(reference, "mlk day", 1, 16, 2012); + validateDate(reference, "memorial day", 5, 28, 2012); + validateDate(reference, "mother's day", 5, 13, 2012); + validateDate(reference, "new year's day", 1, 1, 2012); + validateDate(reference, "new year's eve", 12, 31, 2011); + validateDate(reference, "patriot day", 9, 11, 2012); + validateDate(reference, "president's day", 2, 20, 2012); + validateDate(reference, "st patty's day", 3, 17, 2012); + validateDate(reference, "tax day", 4, 15, 2012); + validateDate(reference, "thanksgiving", 11, 24, 2011); + validateDate(reference, "election day", 11, 8, 2011); + validateDate(reference, "valentine day", 2, 14, 2012); + validateDate(reference, "veterans day", 11, 11, 2011); + } + + @Test + void testRelativeHolidays() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); + calendarSource = new CalendarSource(reference); + + validateDate(reference, "2 black fridays from now", 11, 23, 2012); + validateDate(reference, "three memorial days ago", 5, 25, 2009); + } + + @Test + void testSeasonsByYear() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); + calendarSource = new CalendarSource(reference); + + validateDate(reference, "spring 2010", 3, 20, 2010); + validateDate(reference, "spring 2018", 3, 20, 2018); + validateDate(reference, "spring 1928", 3, 20, 1928); + + validateDate(reference, "summer 2012", 6, 20, 2012); + validateDate(reference, "summer 2015", 6, 21, 2015); + validateDate(reference, "summer 1960", 6, 21, 1960); + + validateDate(reference, "fall 2011", 9, 23, 2011); + validateDate(reference, "fall 2012", 9, 22, 2012); + validateDate(reference, "autumn 2016", 9, 22, 2016); + validateDate(reference, "autumn 1800", 9, 23, 1800); + + validateDate(reference, "winter 2016", 12, 21, 2016); + validateDate(reference, "winter 2011", 12, 22, 2011); + validateDate(reference, "winter 1900", 12, 22, 1900); + } + + @Test + void testHolidaysByYear() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); + calendarSource = new CalendarSource(reference); + + validateDate(reference, "april fool's day 2000", 4, 1, 2000); + validateDate(reference, "black friday 2001", 11, 23, 2001); + validateDate(reference, "christmas 2002", 12, 25, 2002); + validateDate(reference, "christmas eve 2003", 12, 24, 2003); + validateDate(reference, "columbus day 2010", 10, 11, 2010); + validateDate(reference, "earth day 2005", 4, 22, 2005); + validateDate(reference, "easter '06", 4, 16, 2006); + validateDate(reference, "father's day '07", 6, 17, 2007); + validateDate(reference, "flag day '08", 6, 14, 2008); + validateDate(reference, "good friday '09", 4, 10, 2009); + validateDate(reference, "groundhog day '10", 2, 2, 2010); + validateDate(reference, "halloween '11", 10, 31, 2011); + validateDate(reference, "independence day '12", 7, 4, 2012); + validateDate(reference, "kwanzaa '13", 12, 26, 2013); + validateDate(reference, "labor day '14", 9, 1, 2014); + validateDate(reference, "mlk day '15", 1, 19, 2015); + validateDate(reference, "memorial day '16", 5, 30, 2016); + validateDate(reference, "mother's day 2017", 5, 14, 2017); + validateDate(reference, "new year's day 2018", 1, 1, 2018); + validateDate(reference, "new year's eve 2019", 12, 31, 2018); + validateDate(reference, "patriot day 2020", 9, 11, 2020); + validateDate(reference, "president's day 2019", 2, 18, 2019); + validateDate(reference, "st patty's day 2018", 3, 17, 2018); + validateDate(reference, "tax day 2017", 4, 15, 2017); + validateDate(reference, "thanksgiving 2016", 11, 24, 2016); + validateDate(reference, "election day 2015", 11, 3, 2015); + validateDate(reference, "valentine day 2014", 2, 14, 2014); + validateDate(reference, "veterans day 2013", 11, 11, 2013); + } + + @Test + void testHolidaysWithModifiers() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); + calendarSource = new CalendarSource(reference); + + validateDate(reference, "four days before veterans day 2013", 11, 7, 2013); + validateDate(reference, "two days after two thanksgivings from now", 11, 24, 2012); + } + + @Test + void testSeasonsWithModifiers() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("11/05/2011"); + calendarSource = new CalendarSource(reference); + + validateDate(reference, "four days before fall 2013", 9, 18, 2013); + validateDate(reference, "two days after two summers from now", 6, 23, 2013); + validateDate(reference, "three summers ago", 6, 21, 2009); + } } diff --git a/src/test/java/org/natty/RecurrenceTest.java b/src/test/java/org/natty/RecurrenceTest.java index 87783026..ddc65349 100644 --- a/src/test/java/org/natty/RecurrenceTest.java +++ b/src/test/java/org/natty/RecurrenceTest.java @@ -1,47 +1,46 @@ package org.natty; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; + import java.sql.Timestamp; -import java.text.DateFormat; import java.time.LocalDateTime; import java.util.Date; import java.util.Locale; import java.util.TimeZone; -import junit.framework.Assert; -import org.junit.BeforeClass; - -import org.junit.Test; +import static org.assertj.core.api.Assertions.assertThat; /** - * * @author Joe Stelmach */ -public class RecurrenceTest extends AbstractTest { - @BeforeClass - public static void oneTime() { - Locale.setDefault(Locale.US); - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - initCalendarAndParser(); - } - - @Test - public void testRelative() throws Exception { - - final LocalDateTime refDateTime = LocalDateTime.of(2011, 3, 3, 12, 00, 00); - Date reference = Timestamp.valueOf(refDateTime); - calendarSource = new CalendarSource(reference); - - DateGroup group = _parser.parse("every friday until two tuesdays from now", reference).get(0); - Assert.assertEquals(1, group.getDates().size()); - validateDate(group.getDates().get(0), 3, 4, 2011); - Assert.assertTrue(group.isRecurring()); - validateDate(group.getRecursUntil(), 3, 15, 2011); - - group = _parser.parse("every saturday or sunday", reference).get(0); - Assert.assertEquals(2, group.getDates().size()); - validateDate(group.getDates().get(0), 3, 5, 2011); - validateDate(group.getDates().get(1), 3, 6, 2011); - Assert.assertTrue(group.isRecurring()); - Assert.assertNull(group.getRecursUntil()); - } +class RecurrenceTest extends AbstractTest { + @BeforeAll + public static void oneTime() { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + initCalendarAndParser(); + } + + @Test + void testRelative() throws Exception { + + final LocalDateTime refDateTime = LocalDateTime.of(2011, 3, 3, 12, 00, 00); + Date reference = Timestamp.valueOf(refDateTime); + calendarSource = new CalendarSource(reference); + + DateGroup group = parser.parse("every friday until two tuesdays from now", reference).get(0); + assertThat(group.getDates()).hasSize(1); + validateDate(group.getDates().get(0), 3, 4, 2011); + assertThat(group.isRecurring()).isTrue(); + validateDate(group.getRecursUntil(), 3, 15, 2011); + + group = parser.parse("every saturday or sunday", reference).get(0); + assertThat(group.getDates()).hasSize(2); + + validateDate(group.getDates().get(0), 3, 5, 2011); + validateDate(group.getDates().get(1), 3, 6, 2011); + assertThat(group.isRecurring()).isTrue(); + assertThat(group.getRecursUntil()).isNull(); + } } diff --git a/src/test/java/org/natty/SearchTest.java b/src/test/java/org/natty/SearchTest.java index 140375d8..84e62e6d 100644 --- a/src/test/java/org/natty/SearchTest.java +++ b/src/test/java/org/natty/SearchTest.java @@ -1,8 +1,7 @@ package org.natty; -import junit.framework.Assert; -import org.junit.BeforeClass; -import org.junit.Test; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; import java.text.DateFormat; import java.util.Date; @@ -10,403 +9,398 @@ import java.util.Locale; import java.util.TimeZone; +import static org.assertj.core.api.Assertions.assertThat; + /** - * * @author Joe Stelmach */ -public class SearchTest extends AbstractTest { - @BeforeClass - public static void oneTime() { - Locale.setDefault(Locale.US); - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - initCalendarAndParser(); - } - - @Test - public void test() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/20/2011"); - calendarSource = new CalendarSource(reference); - - Parser parser = new Parser(); - List groups = parser.parse("golf tomorrow at 9 AM at pebble beach", reference); - Assert.assertEquals(1, groups.size()); - DateGroup group = groups.get(0); - Assert.assertEquals(1, group.getLine()); - Assert.assertEquals(6, group.getPosition()); - Assert.assertEquals(1, group.getDates().size()); - validateDate(group.getDates().get(0), 2, 21, 2011); - validateTime(group.getDates().get(0), 9, 0, 0); - - groups = parser.parse("golf with friends tomorrow at 10 ", reference); - Assert.assertEquals(1, groups.size()); - group = groups.get(0); - Assert.assertEquals(1, group.getLine()); - Assert.assertEquals(19, group.getPosition()); - Assert.assertEquals(1, group.getDates().size()); - validateDate(group.getDates().get(0), 2, 21, 2011); - validateTime(group.getDates().get(0), 10, 0, 0); - - parser = new Parser(); - groups = parser.parse("golf with freinds tomorrow at 9 or Thursday at 10 am", reference); - Assert.assertEquals(1, groups.size()); - List dates = groups.get(0).getDates(); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 2, 21, 2011); - validateTime(dates.get(0), 9, 0, 0); - validateDate(dates.get(1), 2, 24, 2011); - validateTime(dates.get(1), 10, 0, 0); - - groups = parser.parse("golf with friends tomorrow at 9 or Thursday at 10", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 2, 21, 2011); - validateTime(dates.get(0), 9, 0, 0); - validateDate(dates.get(1), 2, 24, 2011); - validateTime(dates.get(1), 10, 0, 0); - - groups = parser.parse("I want to go to park tomorrow and then email john@aol.com", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 2, 21, 2011); - - groups = parser.parse("I want to pay off all my debt in the next two years.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 2, 20, 2011); - validateDate(dates.get(1), 2, 20, 2013); - - groups = parser.parse("I want to purchase a car in the next month.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 3, 20, 2011); - - groups = parser.parse("I want to plan a get-together with my friends for this Friday.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 2, 25, 2011); - - groups = parser.parse("I want to lose five pounds in the next two months.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 2, 20, 2011); - validateDate(dates.get(1), 4, 20, 2011); - - groups = parser.parse("I want to finalize my college schedule by next week.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 2, 27, 2011); - - groups = parser.parse("I want to read this weekend.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 2, 26, 2011); - - groups = parser.parse("I want to travel a big chunk of world next year.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 2, 20, 2012); - - groups = parser.parse("last 2 weeks", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 2, 20, 2011); - validateDate(dates.get(1), 2, 6, 2011); - - groups = parser.parse("last 5 years", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 2, 20, 2011); - validateDate(dates.get(1), 2, 20, 2006); - - groups = parser.parse("next 5 years", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(2, dates.size()); - validateDate(dates.get(0), 2, 20, 2011); - validateDate(dates.get(1), 2, 20, 2016); - - groups = parser.parse("I want to go to my doctors appointment on May 15, 2011.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 5, 15, 2011); - - groups = parser.parse("I intend to become a zombie on December, 21st 2012.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 12, 21, 2012); - - groups = parser.parse("I want to hire a virtual assistant to do research for me on March 15, 2011", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 3, 15, 2011); - - groups = parser.parse("I want to see my mother on sunday.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 2, 27, 2011); - - groups = parser.parse("I want to be able to jog 3 miles non-stop by September.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 1, 2011); - - groups = parser.parse("I want to lose 10 lbs in 10 days", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 3, 2, 2011); - - groups = parser.parse("I want to visit my grandfathers grave on December 30 2011", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 12, 30, 2011); - - groups = parser.parse("i want to have 1 kid this year", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 2, 20, 2011); - - groups = parser.parse("save $1000 by September", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 1, 2011); - - groups = parser.parse("have my son play at muse music in provo UT at the 3 band cause they always have fog on the third band at 7:30", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDateTime(dates.get(0), 2, 20, 2011, 7, 30, 0); - - groups = parser.parse("i want to eat chinese tonight", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDateTime(dates.get(0), 2, 20, 2011, 20, 0, 0); - - groups = parser.parse("Watch School Spirits on June 20 on syfy channel", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 6, 20, 2011); - - groups = parser.parse("Watch School Spirits on June 20 on", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 6, 20, 2011); - - groups = parser.parse("Watch School Spirits on June 20", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 6, 20, 2011); - - groups = parser.parse("hillary clinton sep 13, 2013", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 13, 2013); - Assert.assertEquals(17, groups.get(0).getPosition()); - Assert.assertEquals("sep 13, 2013", groups.get(0).getText()); - - groups = parser.parse("hillary clinton 9/13/2013", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 13, 2013); - Assert.assertEquals(17, groups.get(0).getPosition()); - Assert.assertEquals("9/13/2013", groups.get(0).getText()); - - groups = parser.parse("hillary clintoo sep 13, 2013", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 13, 2013); - Assert.assertEquals(17, groups.get(0).getPosition()); - Assert.assertEquals("sep 13, 2013", groups.get(0).getText()); - - groups = parser.parse("clinton sep 13 2013", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 13, 2013); - Assert.assertEquals(9, groups.get(0).getPosition()); - Assert.assertEquals("sep 13 2013", groups.get(0).getText()); - - groups = parser.parse("wedding dinner with Pam", reference); - Assert.assertEquals(0, groups.size()); - - groups = parser.parse("yummy fried chicken", reference); - Assert.assertEquals(0, groups.size()); - - groups = parser.parse("I am friend with Pam", reference); - Assert.assertEquals(0, groups.size()); - - groups = parser.parse("bfriday blah blah", reference); - Assert.assertEquals(0, groups.size()); - - groups = parser.parse("dinner bmong friends", reference); - Assert.assertEquals(0, groups.size()); - - groups = parser.parse("I know we should meet tomorrow", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 2, 21, 2011); - - groups = parser.parse("**SHOT 01/31/15**", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 1, 31, 2015); - - groups = parser.parse("KOSTROMA REGION, RUSSIA. SEPTEMBER 24, 2014. A woman cleaning up fallen leaves on the grounds of the Shchelykovo museum reserve of Russian playwright Alexander Ostrovsky.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 24, 2014); - - groups = parser.parse("21 November 2014-NYC-USA **** STRICTLY NOT AVAILABLE FOR USA ***", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 11, 21, 2014); - - groups = parser.parse("...all the backstory I needed in the first two minutes. From there, I....", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDateTime(dates.get(0), 2, 20, 2011, 0, 2, 0); - - groups = parser.parse("earthquake occured 5km NNW of Vincent, California at 07:34 UTC! #earthquake #Vincent http://t.co/6e4fAC6hTU", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDateTime(dates.get(0), 2, 20, 2011, 2, 34, 0); - - groups = parser.parse("Caricature: Person with anti-German foreign press. From: Le Rire, Paris, Spring 1933.", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 3, 20, 1933); - - groups = parser.parse("Person with Generaloberst von Seeckt in Bad Nauheim. Photograph. Autumn 1936", reference); - Assert.assertEquals(1, groups.size()); - dates = groups.get(0).getDates(); - Assert.assertEquals(1, dates.size()); - validateDate(dates.get(0), 9, 23, 1936); - } - - @Test - public void testLocations() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/20/2011"); - calendarSource = new CalendarSource(reference); - - Parser parser = new Parser(); - List groups = parser.parse("I want to go to the movies on september 1st. Or maybe we should go on October 3rd.", reference); - Assert.assertEquals(2, groups.size()); - DateGroup group = groups.get(0); - Assert.assertEquals(1, group.getLine()); - Assert.assertEquals(31, group.getPosition()); - group = groups.get(1); - Assert.assertEquals(1, group.getLine()); - Assert.assertEquals(72, group.getPosition()); - - groups = parser.parse("I want to go to \nthe movies on september 1st to see The Alan Turing Movie.", reference); - Assert.assertEquals(1, groups.size()); - group = groups.get(0); - Assert.assertEquals(2, group.getLine()); - Assert.assertEquals(15, group.getPosition()); - } - - @Test - public void testPrefixSuffix() throws Exception { - - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/20/2011"); - calendarSource = new CalendarSource(reference); - - // no prefix or suffix - Parser parser = new Parser(); - List groups = parser.parse("Sept. 1st"); - Assert.assertEquals(1, groups.size()); - DateGroup group = groups.get(0); - Assert.assertEquals(0, group.getPrefix(3).length()); - Assert.assertEquals(0, group.getSuffix(3).length()); - - // no prefix - groups = parser.parse("Sept. 1st is the date"); - Assert.assertEquals(1, groups.size()); - group = groups.get(0); - Assert.assertEquals(0, group.getPrefix(3).length()); - String suffix = group.getSuffix(3); - Assert.assertEquals(3, suffix.length()); - Assert.assertEquals(" is",suffix); - - // no suffix - groups = parser.parse("The date is Sept. 1st"); - Assert.assertEquals(1, groups.size()); - group = groups.get(0); - String prefix = group.getPrefix(3); - Assert.assertEquals(3, prefix.length()); - Assert.assertEquals("is ", prefix); - Assert.assertEquals(0, group.getSuffix(3).length()); - - // ask for a larger prefix than available - groups = parser.parse("a Sept. 1st"); - Assert.assertEquals(1, groups.size()); - group = groups.get(0); - prefix = group.getPrefix(5); - Assert.assertEquals(2, prefix.length()); - Assert.assertEquals("a ", prefix); - Assert.assertEquals(0, group.getSuffix(3).length()); - - // ask for a larger suffix than available - groups = parser.parse("Sept. 1st a"); - Assert.assertEquals(1, groups.size()); - group = groups.get(0); - suffix = group.getSuffix(5); - Assert.assertEquals(2,suffix.length()); - Assert.assertEquals(" a", suffix); - Assert.assertEquals(0, group.getPrefix(3).length()); - - // ask for a larger prefix and suffix than available - groups = parser.parse("a Sept. 1st a"); - Assert.assertEquals(1, groups.size()); - group = groups.get(0); - prefix = group.getPrefix(5); - suffix = group.getSuffix(5); - Assert.assertEquals(2,prefix.length()); - Assert.assertEquals("a ", prefix); - Assert.assertEquals(2,suffix.length()); - Assert.assertEquals(" a", suffix); - } - - @Test - public void testNoDates() { - List dates = parseCollection(new Date(), "Fried Chicken, Wedding Dinner"); - Assert.assertEquals(0, dates.size()); - - parseCollection(new Date(), "Cleveland"); - Assert.assertEquals(0, dates.size()); - } +class SearchTest extends AbstractTest { + @BeforeAll + public static void oneTime() { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + initCalendarAndParser(); + } + + @Test + void test() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/20/2011"); + calendarSource = new CalendarSource(reference); + + Parser parser = new Parser(); + List groups = parser.parse("golf tomorrow at 9 AM at pebble beach", reference); + assertThat(groups).hasSize(1); + DateGroup group = groups.get(0); + assertThat(group.getLine()).isEqualTo(1); + assertThat(group.getPosition()).isEqualTo(6); + assertThat(group.getDates()).hasSize(1); + validateDate(group.getDates().get(0), 2, 21, 2011); + validateTime(group.getDates().get(0), 9, 0, 0); + + groups = parser.parse("golf with friends tomorrow at 10 ", reference); + assertThat(groups).hasSize(1); + group = groups.get(0); + assertThat(group.getLine()).isEqualTo(1); + assertThat(group.getPosition()).isEqualTo(19); + assertThat(group.getDates().size()).isEqualTo(1); + validateDate(group.getDates().get(0), 2, 21, 2011); + validateTime(group.getDates().get(0), 10, 0, 0); + + parser = new Parser(); + groups = parser.parse("golf with freinds tomorrow at 9 or Thursday at 10 am", reference); + assertThat(groups).hasSize(1); + List dates = groups.get(0).getDates(); + assertThat(dates).hasSize(2); + validateDate(dates.get(0), 2, 21, 2011); + validateTime(dates.get(0), 9, 0, 0); + validateDate(dates.get(1), 2, 24, 2011); + validateTime(dates.get(1), 10, 0, 0); + + groups = parser.parse("golf with friends tomorrow at 9 or Thursday at 10", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(2); + validateDate(dates.get(0), 2, 21, 2011); + validateTime(dates.get(0), 9, 0, 0); + validateDate(dates.get(1), 2, 24, 2011); + validateTime(dates.get(1), 10, 0, 0); + + groups = parser.parse("I want to go to park tomorrow and then email john@aol.com", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 2, 21, 2011); + + groups = parser.parse("I want to pay off all my debt in the next two years.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(2); + validateDate(dates.get(0), 2, 20, 2011); + validateDate(dates.get(1), 2, 20, 2013); + + groups = parser.parse("I want to purchase a car in the next month.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 3, 20, 2011); + + groups = parser.parse("I want to plan a get-together with my friends for this Friday.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 2, 25, 2011); + + groups = parser.parse("I want to lose five pounds in the next two months.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(2); + validateDate(dates.get(0), 2, 20, 2011); + validateDate(dates.get(1), 4, 20, 2011); + + groups = parser.parse("I want to finalize my college schedule by next week.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 2, 27, 2011); + + groups = parser.parse("I want to read this weekend.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 2, 26, 2011); + + groups = parser.parse("I want to travel a big chunk of world next year.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 2, 20, 2012); + + groups = parser.parse("last 2 weeks", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(2); + validateDate(dates.get(0), 2, 20, 2011); + validateDate(dates.get(1), 2, 6, 2011); + + groups = parser.parse("last 5 years", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(2); + validateDate(dates.get(0), 2, 20, 2011); + validateDate(dates.get(1), 2, 20, 2006); + + groups = parser.parse("next 5 years", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(2); + validateDate(dates.get(0), 2, 20, 2011); + validateDate(dates.get(1), 2, 20, 2016); + + groups = parser.parse("I want to go to my doctors appointment on May 15, 2011.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 5, 15, 2011); + + groups = parser.parse("I intend to become a zombie on December, 21st 2012.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 12, 21, 2012); + + groups = parser.parse("I want to hire a virtual assistant to do research for me on March 15, 2011", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 3, 15, 2011); + + groups = parser.parse("I want to see my mother on sunday.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 2, 27, 2011); + + groups = parser.parse("I want to be able to jog 3 miles non-stop by September.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 1, 2011); + + groups = parser.parse("I want to lose 10 lbs in 10 days", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 3, 2, 2011); + + groups = parser.parse("I want to visit my grandfathers grave on December 30 2011", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 12, 30, 2011); + + groups = parser.parse("i want to have 1 kid this year", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 2, 20, 2011); + + groups = parser.parse("save $1000 by September", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 1, 2011); + + groups = parser.parse("have my son play at muse music in provo UT at the 3 band cause they always have fog on the third band at 7:30", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDateTime(dates.get(0), 2, 20, 2011, 7, 30, 0); + + groups = parser.parse("i want to eat chinese tonight", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDateTime(dates.get(0), 2, 20, 2011, 20, 0, 0); + + groups = parser.parse("Watch School Spirits on June 20 on syfy channel", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 6, 20, 2011); + + groups = parser.parse("Watch School Spirits on June 20 on", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 6, 20, 2011); + + groups = parser.parse("Watch School Spirits on June 20", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 6, 20, 2011); + + groups = parser.parse("hillary clinton sep 13, 2013", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 13, 2013); + assertThat(groups.get(0).getPosition()).isEqualTo(17); + assertThat(groups.get(0).getText()).isEqualTo("sep 13, 2013"); + + groups = parser.parse("hillary clinton 9/13/2013", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 13, 2013); + assertThat(groups.get(0).getPosition()).isEqualTo(17); + assertThat(groups.get(0).getText()).isEqualTo("9/13/2013"); + + groups = parser.parse("hillary clintoo sep 13, 2013", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 13, 2013); + assertThat(groups.get(0).getPosition()).isEqualTo(17); + assertThat(groups.get(0).getText()).isEqualTo("sep 13, 2013"); + + groups = parser.parse("clinton sep 13 2013", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 13, 2013); + assertThat(groups.get(0).getPosition()).isEqualTo(9); + assertThat(groups.get(0).getText()).isEqualTo("sep 13 2013"); + + groups = parser.parse("wedding dinner with Pam", reference); + assertThat(groups.size()).isEqualTo(0); + + groups = parser.parse("yummy fried chicken", reference); + assertThat(groups.size()).isEqualTo(0); + + groups = parser.parse("I am friend with Pam", reference); + assertThat(groups.size()).isEqualTo(0); + + groups = parser.parse("bfriday blah blah", reference); + assertThat(groups.size()).isEqualTo(0); + + groups = parser.parse("dinner bmong friends", reference); + assertThat(groups.size()).isEqualTo(0); + + groups = parser.parse("I know we should meet tomorrow", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 2, 21, 2011); + + groups = parser.parse("**SHOT 01/31/15**", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 1, 31, 2015); + + groups = parser.parse("KOSTROMA REGION, RUSSIA. SEPTEMBER 24, 2014. A woman cleaning up fallen leaves on the grounds of the Shchelykovo museum reserve of Russian playwright Alexander Ostrovsky.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 24, 2014); + + groups = parser.parse("21 November 2014-NYC-USA **** STRICTLY NOT AVAILABLE FOR USA ***", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 11, 21, 2014); + + groups = parser.parse("...all the backstory I needed in the first two minutes. From there, I....", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDateTime(dates.get(0), 2, 20, 2011, 0, 2, 0); + + groups = parser.parse("earthquake occured 5km NNW of Vincent, California at 07:34 UTC! #earthquake #Vincent http://t.co/6e4fAC6hTU", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDateTime(dates.get(0), 2, 20, 2011, 2, 34, 0); + + groups = parser.parse("Caricature: Person with anti-German foreign press. From: Le Rire, Paris, Spring 1933.", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 3, 20, 1933); + + groups = parser.parse("Person with Generaloberst von Seeckt in Bad Nauheim. Photograph. Autumn 1936", reference); + assertThat(groups).hasSize(1); + dates = groups.get(0).getDates(); + assertThat(dates).hasSize(1); + validateDate(dates.get(0), 9, 23, 1936); + } + + @Test + public void testLocations() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/20/2011"); + calendarSource = new CalendarSource(reference); + + Parser parser = new Parser(); + List groups = parser.parse("I want to go to the movies on september 1st. Or maybe we should go on October 3rd.", reference); + assertThat(groups.size()).isEqualTo(2); + DateGroup group = groups.get(0); + assertThat(group.getLine()).isEqualTo(1); + assertThat(group.getPosition()).isEqualTo(31); + group = groups.get(1); + assertThat(group.getLine()).isEqualTo(1); + assertThat(group.getPosition()).isEqualTo(72); + + groups = parser.parse("I want to go to \nthe movies on september 1st to see The Alan Turing Movie.", reference); + assertThat(groups).hasSize(1); + group = groups.get(0); + assertThat(group.getLine()).isEqualTo(2); + assertThat(group.getPosition()).isEqualTo(15); + } + + @Test + public void testPrefixSuffix() throws Exception { + + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("2/20/2011"); + calendarSource = new CalendarSource(reference); + + // no prefix or suffix + Parser parser = new Parser(); + List groups = parser.parse("Sept. 1st"); + assertThat(groups).hasSize(1); + DateGroup group = groups.get(0); + assertThat(group.getPrefix(3)).hasSize(0); + assertThat(group.getSuffix(3)).hasSize(0); + + // no prefix + groups = parser.parse("Sept. 1st is the date"); + assertThat(groups).hasSize(1); + group = groups.get(0); + assertThat(group.getPrefix(3)).hasSize(0); + String suffix = group.getSuffix(3); + assertThat(suffix).isEqualTo(" is"); + + // no suffix + groups = parser.parse("The date is Sept. 1st"); + assertThat(groups).hasSize(1); + group = groups.get(0); + String prefix = group.getPrefix(3); + assertThat(prefix).hasSize(3).isEqualTo("is "); + assertThat(group.getSuffix(3)).hasSize(0); + + // ask for a larger prefix than available + groups = parser.parse("a Sept. 1st"); + assertThat(groups).hasSize(1); + group = groups.get(0); + prefix = group.getPrefix(5); + assertThat(prefix).isEqualTo("a "); + assertThat(group.getSuffix(3)).hasSize(0); + + // ask for a larger suffix than available + groups = parser.parse("Sept. 1st a"); + assertThat(groups).hasSize(1); + group = groups.get(0); + suffix = group.getSuffix(5); + assertThat(suffix).isEqualTo(" a"); + assertThat(group.getPrefix(3)).hasSize(0); + + // ask for a larger prefix and suffix than available + groups = parser.parse("a Sept. 1st a"); + assertThat(groups).hasSize(1); + group = groups.get(0); + prefix = group.getPrefix(5); + suffix = group.getSuffix(5); + assertThat(prefix).isEqualTo("a "); + assertThat(suffix).isEqualTo(" a"); + } + + @Test + public void testNoDates() { + List dates = parseCollection(new Date(), "Fried Chicken, Wedding Dinner"); + assertThat(dates).hasSize(0); + + parseCollection(new Date(), "Cleveland"); + assertThat(dates).hasSize(0); + } } diff --git a/src/test/java/org/natty/ThreadSafetyTest.java b/src/test/java/org/natty/ThreadSafetyTest.java index 4179e897..2209094c 100644 --- a/src/test/java/org/natty/ThreadSafetyTest.java +++ b/src/test/java/org/natty/ThreadSafetyTest.java @@ -1,75 +1,76 @@ package org.natty; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; + import java.sql.Timestamp; import java.text.DateFormat; import java.time.LocalDateTime; import java.util.Date; import java.util.Locale; -import java.util.concurrent.atomic.AtomicInteger; import java.util.TimeZone; +import java.util.concurrent.atomic.AtomicInteger; -import org.junit.Assert; - -import org.junit.Test; -import org.junit.BeforeClass; - -public class ThreadSafetyTest extends AbstractTest { +import static org.assertj.core.api.Assertions.assertThat; - private final static int NUM_OF_THREADS = 10; - private final static int JOIN_TIMEOUT = 2000; // 2 seconds - private static DateFormat dateFormat; +class ThreadSafetyTest extends AbstractTest { - private AtomicInteger numOfCorrectResults = new AtomicInteger(); + private final static int NUM_OF_THREADS = 10; + private final static int JOIN_TIMEOUT = 2000; // 2 seconds + private static DateFormat dateFormat; - @BeforeClass - public static void oneTime() { - Locale.setDefault(Locale.US); - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - dateFormat = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, Locale.US); - initCalendarAndParser(); - } + private final AtomicInteger numOfCorrectResults = new AtomicInteger(); - @Test - public void testManyThreads() throws Exception { - Thread[] threads = new Thread[NUM_OF_THREADS]; - for (int i = 0; i < NUM_OF_THREADS; i++) { - threads[i] = new Thread(new Tester(i)); + @BeforeAll + public static void oneTime() { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + dateFormat = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, Locale.US); + initCalendarAndParser(); } - for (Thread thread : threads) { - thread.start(); - } - for (Thread thread : threads) { - thread.join(JOIN_TIMEOUT); + + @Test + void testManyThreads() throws Exception { + Thread[] threads = new Thread[NUM_OF_THREADS]; + for (int i = 0; i < NUM_OF_THREADS; i++) { + threads[i] = new Thread(new Tester(i)); + } + for (Thread thread : threads) { + thread.start(); + } + for (Thread thread : threads) { + thread.join(JOIN_TIMEOUT); + } + assertThat(numOfCorrectResults.get()).isEqualTo(NUM_OF_THREADS); } - Assert.assertEquals(NUM_OF_THREADS, numOfCorrectResults.get()); - } - private class Tester implements Runnable { + private class Tester implements Runnable { - private Date referenceDate; - private int baseMinute; + private final Date referenceDate; + private final int baseMinute; - public Tester(int baseMinute) throws Exception { - final LocalDateTime refDateTime = LocalDateTime.of(2011, 3, 3, 1, baseMinute, 0); - this.referenceDate = Timestamp.valueOf(refDateTime); - this.baseMinute = baseMinute; - } + public Tester(int baseMinute) throws Exception { + final LocalDateTime refDateTime = LocalDateTime.of(2011, 3, 3, 1, baseMinute, 0); + this.referenceDate = Timestamp.valueOf(refDateTime); + this.baseMinute = baseMinute; + } - public void run() { - try { - // Imitate some long running task. - Thread.sleep(100); - } catch (Exception e) { } - String newDate = "4/4/2012"; - Date parsed = _parser.parse(newDate, referenceDate).get(0).getDates().get(0); - validateThread(parsed, baseMinute); - numOfCorrectResults.incrementAndGet(); + public void run() { + try { + // Imitate some long running task. + Thread.sleep(100); + } catch (Exception e) { + } + String newDate = "4/4/2012"; + Date parsed = parser.parse(newDate, referenceDate).get(0).getDates().get(0); + validateThread(parsed, baseMinute); + numOfCorrectResults.incrementAndGet(); + } } - } - // We need this method, because validateDate and validateTime are not thread safe. - private synchronized void validateThread(Date date, int baseMinute) { - validateDate(date, 4, 4, 2012); - validateTime(date, 1, baseMinute, 0); - } + // We need this method because validateDate and validateTime are not thread safe. + private synchronized void validateThread(Date date, int baseMinute) { + validateDate(date, 4, 4, 2012); + validateTime(date, 1, baseMinute, 0); + } } diff --git a/src/test/java/org/natty/TimeTest.java b/src/test/java/org/natty/TimeTest.java index 671ff3ad..1a3fa1de 100644 --- a/src/test/java/org/natty/TimeTest.java +++ b/src/test/java/org/natty/TimeTest.java @@ -1,8 +1,7 @@ package org.natty; -import org.junit.Assert; -import org.junit.BeforeClass; -import org.junit.Test; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; import java.text.DateFormat; import java.util.Date; @@ -10,149 +9,152 @@ import java.util.Locale; import java.util.TimeZone; +import static org.assertj.core.api.Assertions.assertThat; + /** - * Runs the parser through the various time formats - * + * Runs the parser through the various time formats + * * @author Joe Stelmach */ -public class TimeTest extends AbstractTest { - @BeforeClass - public static void oneTime() { - Locale.setDefault(Locale.US); - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - initCalendarAndParser(); - } - - /** - * Runs the parser through the various time formats - * @throws Exception - */ - @Test - public void testFormal() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("1/02/2011"); - calendarSource = new CalendarSource(reference); - validateTime(reference, "0600h", 6, 0, 0); - validateTime(reference, "06:00h", 6, 0, 0); - validateTime(reference, "06:00 hours", 6, 0, 0); - validateTime(reference, "0000", 0, 0, 0); - validateTime(reference, "0700h", 7, 0, 0); - validateTime(reference, "6pm", 18, 0, 0); - validateTime(reference, "5:30 a.m.", 5, 30, 0); - validateTime(reference, "5", 5, 0, 0); - validateTime(reference, "12:59", 12, 59, 0); - validateTime(reference, "23:59:28", 23, 59, 28); - validateTime(reference, "00:00", 0, 0, 0); - validateTime(reference, "10:00am", 10, 0, 0); - validateTime(reference, "10a", 10, 0, 0); - validateTime(reference, "10am", 10, 0, 0); - validateTime(reference, "10a_m", 10, 0, 0); - validateTime(reference, "10", 10, 0, 0); - validateTime(reference, "8p", 20, 0, 0); - validateTime(reference, "8pm", 20, 0, 0); - validateTime(reference, "8 pm", 20, 0, 0); - validateTime(reference, "8 p_m", 20, 0, 0); - } - - @Test - public void testRelaxed() throws Exception { - Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("1/02/2011"); - calendarSource = new CalendarSource(reference); - validateTime(reference, "noon", 12, 0, 0); - validateTime(reference, "at noon", 12, 0, 0); - validateTime(reference, "afternoon", 12, 0, 0); - validateTime(reference, "midnight", 0, 0, 0); - validateTime(reference, "mid-night", 0, 0, 0); - validateTime(reference, "6 in the morning", 6, 0, 0); - validateTime(reference, "4 in the afternoon", 16, 0, 0); - validateTime(reference, "evening", 19, 0, 0); - validateTime(reference, "10 hours before noon", 2, 0, 0); - validateTime(reference, "10 hours before midnight", 14, 0, 0); - validateTime(reference, "5 hours after noon", 17, 0, 0); - validateTime(reference, "5 hours after midnight", 5, 0, 0); - validateTime(reference, "tonight", 20, 0, 0); - } - - @Test - public void testRelative() throws Exception { - Date reference = DateFormat.getTimeInstance(DateFormat.SHORT).parse("12:00 pm"); - calendarSource = new CalendarSource(reference); - validateTime(reference, "in 5 seconds", 12, 0, 5); - validateTime(reference, "in 5 minutes", 12, 5, 0); - validateTime(reference, "in 5 hours", 17, 0, 0); - validateTime(reference, "4 seconds from now", 12, 0, 4); - validateTime(reference, "4 minutes from now", 12, 4, 0); - validateTime(reference, "4 hours from now", 16, 0, 0); - validateTime(reference, "next minute", 12, 1, 0); - validateTime(reference, "last minute", 11, 59, 0); - validateTime(reference, "next second", 12, 0, 1); - validateTime(reference, "this second", 12, 0, 0); - validateTime(reference, "this minute", 12, 0, 0); - validateTime(reference, "this hour", 12, 0, 0); - } - - @Test - public void testAlternatives() throws Exception { - Date reference = DateFormat.getTimeInstance(DateFormat.SHORT).parse("12:00 pm"); - calendarSource = new CalendarSource(reference); - - List dates = parseCollection(reference, "12 or 12:30"); - Assert.assertEquals(2, dates.size()); - validateTime(dates.get(0), 12, 0, 0); - validateTime(dates.get(1), 12, 30, 0); - - dates = parseCollection(reference, "12pm or 12:30"); - Assert.assertEquals(2, dates.size()); - validateTime(dates.get(0), 12, 0, 0); - validateTime(dates.get(1), 12, 30, 0); - - dates = parseCollection(reference, "noon or 12:30"); - Assert.assertEquals(2, dates.size()); - validateTime(dates.get(0), 12, 0, 0); - validateTime(dates.get(1), 12, 30, 0); - - dates = parseCollection(reference, "12 or 12:30am"); - Assert.assertEquals(2, dates.size()); - validateTime(dates.get(0), 0, 0, 0); - validateTime(dates.get(1), 0, 30, 0); - } - - @Test - public void testRange() throws Exception { - Date reference = DateFormat.getTimeInstance(DateFormat.SHORT).parse("12:00 pm"); - calendarSource = new CalendarSource(reference); - - List dates = parseCollection(reference, "for six hours"); - Assert.assertEquals(2, dates.size()); - validateTime(dates.get(0), 12, 0, 0); - validateTime(dates.get(1), 18, 0, 0); - - dates = parseCollection(reference, "for 12 minutes"); - Assert.assertEquals(2, dates.size()); - validateTime(dates.get(0), 12, 0, 0); - validateTime(dates.get(1), 12, 12, 0); - - dates = parseCollection(reference, "for 10 seconds"); - Assert.assertEquals(2, dates.size()); - validateTime(dates.get(0), 12, 0, 0); - validateTime(dates.get(1), 12, 0, 10); - } - - @Test - public void testText() throws Exception { - Date reference = DateFormat.getTimeInstance(DateFormat.SHORT).parse("12:00 pm"); - - List groups = _parser.parse("5.30pm", reference); - Assert.assertEquals(1, groups.size()); - DateGroup group = groups.get(0); - Assert.assertEquals(1, group.getDates().size()); - validateTime(group.getDates().get(0), 17, 30, 0); - Assert.assertEquals("5.30pm", group.getText()); - - groups = _parser.parse("5:30pm", reference); - Assert.assertEquals(1, groups.size()); - group = groups.get(0); - Assert.assertEquals(1, group.getDates().size()); - validateTime(group.getDates().get(0), 17, 30, 0); - Assert.assertEquals("5:30pm", group.getText()); - } +class TimeTest extends AbstractTest { + @BeforeAll + public static void oneTime() { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + initCalendarAndParser(); + } + + /** + * Runs the parser through the various time formats + */ + @Test + void testFormal() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("1/02/2011"); + calendarSource = new CalendarSource(reference); + validateTime(reference, "0600h", 6, 0, 0); + validateTime(reference, "06:00h", 6, 0, 0); + validateTime(reference, "06:00 hours", 6, 0, 0); + validateTime(reference, "0000", 0, 0, 0); + validateTime(reference, "0700h", 7, 0, 0); + validateTime(reference, "6pm", 18, 0, 0); + validateTime(reference, "5:30 a.m.", 5, 30, 0); + validateTime(reference, "5", 5, 0, 0); + validateTime(reference, "12:59", 12, 59, 0); + validateTime(reference, "23:59:28", 23, 59, 28); + validateTime(reference, "00:00", 0, 0, 0); + validateTime(reference, "10:00am", 10, 0, 0); + validateTime(reference, "10a", 10, 0, 0); + validateTime(reference, "10am", 10, 0, 0); + validateTime(reference, "10a_m", 10, 0, 0); + validateTime(reference, "10", 10, 0, 0); + validateTime(reference, "8p", 20, 0, 0); + validateTime(reference, "8pm", 20, 0, 0); + validateTime(reference, "8 pm", 20, 0, 0); + validateTime(reference, "8 p_m", 20, 0, 0); + } + + @Test + void testRelaxed() throws Exception { + Date reference = DateFormat.getDateInstance(DateFormat.SHORT).parse("1/02/2011"); + calendarSource = new CalendarSource(reference); + validateTime(reference, "noon", 12, 0, 0); + validateTime(reference, "at noon", 12, 0, 0); + validateTime(reference, "afternoon", 12, 0, 0); + validateTime(reference, "midnight", 0, 0, 0); + validateTime(reference, "mid-night", 0, 0, 0); + validateTime(reference, "6 in the morning", 6, 0, 0); + validateTime(reference, "4 in the afternoon", 16, 0, 0); + validateTime(reference, "evening", 19, 0, 0); + validateTime(reference, "10 hours before noon", 2, 0, 0); + validateTime(reference, "10 hours before midnight", 14, 0, 0); + validateTime(reference, "5 hours after noon", 17, 0, 0); + validateTime(reference, "5 hours after midnight", 5, 0, 0); + validateTime(reference, "tonight", 20, 0, 0); + } + + @Test + void testRelative() throws Exception { + Date reference = DateFormat.getTimeInstance(DateFormat.SHORT).parse("12:00 pm"); + calendarSource = new CalendarSource(reference); + validateTime(reference, "in 5 seconds", 12, 0, 5); + validateTime(reference, "in 5 minutes", 12, 5, 0); + validateTime(reference, "in 5 hours", 17, 0, 0); + validateTime(reference, "4 seconds from now", 12, 0, 4); + validateTime(reference, "4 minutes from now", 12, 4, 0); + validateTime(reference, "4 hours from now", 16, 0, 0); + validateTime(reference, "next minute", 12, 1, 0); + validateTime(reference, "last minute", 11, 59, 0); + validateTime(reference, "next second", 12, 0, 1); + validateTime(reference, "this second", 12, 0, 0); + validateTime(reference, "this minute", 12, 0, 0); + validateTime(reference, "this hour", 12, 0, 0); + } + + @Test + public void testAlternatives() throws Exception { + Date reference = DateFormat.getTimeInstance(DateFormat.SHORT).parse("12:00 pm"); + calendarSource = new CalendarSource(reference); + + List dates = parseCollection(reference, "12 or 12:30"); + assertThat(dates).hasSize(2); + validateTime(dates.get(0), 12, 0, 0); + validateTime(dates.get(1), 12, 30, 0); + + dates = parseCollection(reference, "12pm or 12:30"); + assertThat(dates).hasSize(2); + validateTime(dates.get(0), 12, 0, 0); + validateTime(dates.get(1), 12, 30, 0); + + dates = parseCollection(reference, "noon or 12:30"); + assertThat(dates).hasSize(2); + validateTime(dates.get(0), 12, 0, 0); + validateTime(dates.get(1), 12, 30, 0); + + dates = parseCollection(reference, "12 or 12:30am"); + assertThat(dates).hasSize(2); + validateTime(dates.get(0), 0, 0, 0); + validateTime(dates.get(1), 0, 30, 0); + } + + @Test + void testRange() throws Exception { + Date reference = DateFormat.getTimeInstance(DateFormat.SHORT).parse("12:00 pm"); + calendarSource = new CalendarSource(reference); + + List dates = parseCollection(reference, "for six hours"); + assertThat(dates).hasSize(2); + validateTime(dates.get(0), 12, 0, 0); + validateTime(dates.get(1), 18, 0, 0); + + dates = parseCollection(reference, "for 12 minutes"); + assertThat(dates).hasSize(2); + validateTime(dates.get(0), 12, 0, 0); + validateTime(dates.get(1), 12, 12, 0); + + dates = parseCollection(reference, "for 10 seconds"); + assertThat(dates).hasSize(2); + validateTime(dates.get(0), 12, 0, 0); + validateTime(dates.get(1), 12, 0, 10); + } + + @Test + void testText() throws Exception { + Date reference = DateFormat.getTimeInstance(DateFormat.SHORT).parse("12:00 pm"); + + List groups = parser.parse("5.30pm", reference); + assertThat(groups).hasSize(1); + DateGroup group = groups.get(0); + assertThat(group.getDates()).hasSize(1); + validateTime(group.getDates().get(0), 17, 30, 0); + assertThat(group.getText()).isEqualTo("5.30pm"); + + groups = parser.parse("5:30pm", reference); + assertThat(groups).hasSize(1); + group = groups.get(0); + assertThat(group.getDates()).hasSize(1); + + validateTime(group.getDates().get(0), 17, 30, 0); + assertThat(group.getText()).isEqualTo("5:30pm"); + + } } diff --git a/src/test/java/org/natty/TimeZoneTest.java b/src/test/java/org/natty/TimeZoneTest.java index 33881f03..76d79342 100644 --- a/src/test/java/org/natty/TimeZoneTest.java +++ b/src/test/java/org/natty/TimeZoneTest.java @@ -1,43 +1,42 @@ package org.natty; -import org.junit.BeforeClass; -import org.junit.Test; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; import java.sql.Timestamp; -import java.text.DateFormat; import java.time.LocalDateTime; import java.util.Date; import java.util.Locale; import java.util.TimeZone; -public class TimeZoneTest extends AbstractTest { +class TimeZoneTest extends AbstractTest { - @BeforeClass - public static void oneTime() { - Locale.setDefault(Locale.US); - TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); - initCalendarAndParser(); - } + @BeforeAll + public static void oneTime() { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("US/Eastern")); + initCalendarAndParser(); + } - @Test - public void testSpecific() throws Exception { - final LocalDateTime refDateTime = LocalDateTime.of(2012, 5, 19, 12, 00, 00); - Date reference = Timestamp.valueOf(refDateTime); - calendarSource = new CalendarSource(reference); + @Test + void testSpecific() throws Exception { + final LocalDateTime refDateTime = LocalDateTime.of(2012, 5, 19, 12, 0, 0); + Date reference = Timestamp.valueOf(refDateTime); + calendarSource = new CalendarSource(reference); - validateDateTime(reference, "2011-06-17T07:00:00Z", 6, 17, 2011, 3, 0, 0); - validateDateTime(reference, "05-Aug-2013 14:10:56 UTC", 8, 5, 2013, 10, 10, 56); - validateDateTime(reference, "5/1/13 01:00:00-8", 5, 1, 2013, 5, 0, 0); - validateDateTime(reference, "5/1/13 01:00:00 UTC", 4, 30, 2013, 21, 0, 0); - validateDateTime(reference, "5/1/13 01:00:00 UTC+8", 4, 30, 2013, 13, 0, 0); - validateDateTime(reference, "5/1/13 01:00:00 GMT-1", 4, 30, 2013, 22, 0, 0); - validateDateTime(reference, "tomorrow, 10 eastern time", 5, 20, 2012, 10, 0, 0); - validateDateTime(reference, "tomorrow, 10 central time", 5, 20, 2012, 11, 0, 0); - validateDateTime(reference, "tomorrow, 10 central", 5, 20, 2012, 11, 0, 0); - validateDateTime(reference, "tomorrow, 10 mountain time", 5, 20, 2012, 12, 0, 0); - validateDateTime(reference, "tomorrow, 10 pacific time", 5, 20, 2012, 13, 0, 0); - validateDateTime(reference, "tomorrow, 10pm pacific", 5, 21, 2012, 1, 0, 0); - validateDateTime(reference, "tomorrow, 10 alaska time", 5, 20, 2012, 14, 0, 0); - validateDateTime(reference, "tomorrow, 10 hawaii time", 5, 20, 2012, 16, 0, 0); - } + validateDateTime(reference, "2011-06-17T07:00:00Z", 6, 17, 2011, 3, 0, 0); + validateDateTime(reference, "05-Aug-2013 14:10:56 UTC", 8, 5, 2013, 10, 10, 56); + validateDateTime(reference, "5/1/13 01:00:00-8", 5, 1, 2013, 5, 0, 0); + validateDateTime(reference, "5/1/13 01:00:00 UTC", 4, 30, 2013, 21, 0, 0); + validateDateTime(reference, "5/1/13 01:00:00 UTC+8", 4, 30, 2013, 13, 0, 0); + validateDateTime(reference, "5/1/13 01:00:00 GMT-1", 4, 30, 2013, 22, 0, 0); + validateDateTime(reference, "tomorrow, 10 eastern time", 5, 20, 2012, 10, 0, 0); + validateDateTime(reference, "tomorrow, 10 central time", 5, 20, 2012, 11, 0, 0); + validateDateTime(reference, "tomorrow, 10 central", 5, 20, 2012, 11, 0, 0); + validateDateTime(reference, "tomorrow, 10 mountain time", 5, 20, 2012, 12, 0, 0); + validateDateTime(reference, "tomorrow, 10 pacific time", 5, 20, 2012, 13, 0, 0); + validateDateTime(reference, "tomorrow, 10pm pacific", 5, 21, 2012, 1, 0, 0); + validateDateTime(reference, "tomorrow, 10 alaska time", 5, 20, 2012, 14, 0, 0); + validateDateTime(reference, "tomorrow, 10 hawaii time", 5, 20, 2012, 16, 0, 0); + } } diff --git a/src/test/java/org/natty/grammar/AbstractGrammarTest.java b/src/test/java/org/natty/grammar/AbstractGrammarTest.java index 65080d15..b5867137 100644 --- a/src/test/java/org/natty/grammar/AbstractGrammarTest.java +++ b/src/test/java/org/natty/grammar/AbstractGrammarTest.java @@ -1,70 +1,52 @@ package org.natty.grammar; -import java.io.ByteArrayInputStream; -import java.lang.reflect.Method; - -import junit.framework.Assert; - import org.antlr.runtime.ANTLRInputStream; import org.antlr.runtime.CommonTokenStream; import org.antlr.runtime.ParserRuleReturnScope; import org.antlr.runtime.tree.CommonTree; import org.antlr.runtime.tree.CommonTreeNodeStream; import org.antlr.runtime.tree.Tree; - import org.natty.ANTLRNoCaseInputStream; import org.natty.ParseListener; import org.natty.generated.DateLexer; import org.natty.generated.DateParser; import org.natty.generated.TreeRewrite; +import java.io.ByteArrayInputStream; +import java.lang.reflect.Method; + +import static org.assertj.core.api.Assertions.assertThat; + public abstract class AbstractGrammarTest { - protected String _ruleName; - - /** - * - * @param input - * @param ast - */ - protected void assertAST(String input, String ast) throws Exception { - Assert.assertEquals(ast, buildAST(input)); - } - - /** - * - * @param value - * @return - * @throws Exception - */ - protected String buildAST(String value) throws Exception { - DateParser parser = buildParser(value); - Class klass = Class.forName("org.natty.generated.DateParser"); - Method meth = klass.getMethod(_ruleName, (Class[]) null); - ParserRuleReturnScope ret = (ParserRuleReturnScope) meth.invoke(parser, (Object[]) null); - - Tree tree = (Tree)ret.getTree(); - // rewrite the tree (temporary fix for http://www.antlr.org/jira/browse/ANTLR-427) - CommonTreeNodeStream nodes = new CommonTreeNodeStream(tree); - TreeRewrite s = new TreeRewrite(nodes); - tree = (CommonTree)s.downup(tree); - - return tree.toStringTree(); - } - - /** - * - * @param value - * @return - */ - private DateParser buildParser(String value) throws Exception { - // lex - ANTLRInputStream input = new ANTLRNoCaseInputStream( - new ByteArrayInputStream(value.getBytes())); - DateLexer lexer = new DateLexer(input); - CommonTokenStream tokens = new CommonTokenStream(lexer); - - // parse - ParseListener listener = new ParseListener(); - return new DateParser(tokens, listener); - } + protected String ruleName; + + protected void assertAST(String input, String ast) throws Exception { + assertThat(buildAST(input)).isEqualTo(ast); + } + + protected String buildAST(String value) throws Exception { + DateParser parser = buildParser(value); + Class klass = Class.forName("org.natty.generated.DateParser"); + Method meth = klass.getMethod(ruleName, (Class[]) null); + ParserRuleReturnScope ret = (ParserRuleReturnScope) meth.invoke(parser, (Object[]) null); + + Tree tree = (Tree) ret.getTree(); + // rewrite the tree (temporary fix for http://www.antlr.org/jira/browse/ANTLR-427) + CommonTreeNodeStream nodes = new CommonTreeNodeStream(tree); + TreeRewrite s = new TreeRewrite(nodes); + tree = (CommonTree) s.downup(tree); + + return tree.toStringTree(); + } + + private DateParser buildParser(String value) throws Exception { + // lex + ANTLRInputStream input = new ANTLRNoCaseInputStream(new ByteArrayInputStream(value.getBytes())); + DateLexer lexer = new DateLexer(input); + CommonTokenStream tokens = new CommonTokenStream(lexer); + + // parse + ParseListener listener = new ParseListener(); + return new DateParser(tokens, listener); + } } diff --git a/src/test/java/org/natty/grammar/DateGrammarTest.java b/src/test/java/org/natty/grammar/DateGrammarTest.java index c97b3466..bf5d44e1 100644 --- a/src/test/java/org/natty/grammar/DateGrammarTest.java +++ b/src/test/java/org/natty/grammar/DateGrammarTest.java @@ -1,638 +1,639 @@ package org.natty.grammar; -import org.junit.Test; - -public class DateGrammarTest extends AbstractGrammarTest { - @Test - public void date() throws Exception { - _ruleName = "date"; - - assertAST("the day before yesterday", "(RELATIVE_DATE (SEEK < by_day 1 (RELATIVE_DATE (SEEK < by_day 1 day))))"); - assertAST("1st oct in the year '89", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89))"); - assertAST("2009-10-10", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 10) (YEAR_OF 2009))"); - assertAST("seven years ago", "(RELATIVE_DATE (SEEK < by_day 7 year))"); - assertAST("next monday", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 2)))"); - } - - @Test - public void alternative_day_of_month_list() throws Exception { - _ruleName = "alternative_day_of_month_list"; - - assertAST("mon may 15 or 16", - "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); - - assertAST("mon may 15 to 16", - "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); - - assertAST("mon may 15 and 16", - "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); - - assertAST("mon may 15 through 16", - "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); - - assertAST("mon may 15 or 16", - "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); - - assertAST("first or last day of september", - "(DATE_TIME (RELATIVE_DATE (EXPLICIT_SEEK (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))) (DATE_TIME (RELATIVE_DATE (EXPLICIT_SEEK (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 31))))"); - - assertAST("first or last day of september at 5pm", - "(DATE_TIME (RELATIVE_DATE (EXPLICIT_SEEK (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 1))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (EXPLICIT_SEEK (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 31))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm))"); - - - assertAST("first or last day of next september at 6am", - "(DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 1))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am)) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 31))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am))"); - - assertAST("first or last day of 2 septembers from now at 5pm", - "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 1))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 31))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm))"); - } - - @Test - public void global_date_prefix() throws Exception { - _ruleName = "global_date_prefix"; - - assertAST("the day after", "> by_day 1"); - assertAST("day after", "> by_day 1"); - assertAST("2 days after", "> by_day 2"); - assertAST("three days before", "< by_day 3"); - assertAST("six months after", "> by_month 6"); - assertAST("3 weeks before", "< by_week 3"); - assertAST("10 years after", "> by_year 10"); - assertAST("the day before", "< by_day 1"); - assertAST("day before", "< by_day 1"); - } - - @Test - public void relaxed_date() throws Exception { - _ruleName = "relaxed_date"; - - assertAST("oct 1, 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 1980))"); - assertAST("oct. 1, 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 1980))"); - assertAST("oct 1,1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 1980))"); - assertAST("1st oct in the year '89", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89))"); - assertAST("thirty first of december '80", "(EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 31) (YEAR_OF 80))"); - assertAST("the first of december in the year 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 1) (YEAR_OF 1980))"); - assertAST("the 2 of february in the year 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 2) (YEAR_OF 1980))"); - assertAST("the 2nd of february in the year 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 2) (YEAR_OF 1980))"); - assertAST("the second of february in the year 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 2) (YEAR_OF 1980))"); - assertAST("jan. 2nd", "(EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 2))"); - assertAST("sun, nov 21 2010", "(EXPLICIT_DATE (MONTH_OF_YEAR 11) (DAY_OF_MONTH 21) (DAY_OF_WEEK 1) (YEAR_OF 2010))"); - } - - @Test - public void formal_date() throws Exception { - _ruleName = "formal_date"; - - assertAST("2009-10-10", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 10) (YEAR_OF 2009))"); - assertAST("1980-1-2", "(EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 2) (YEAR_OF 1980))"); - assertAST("12/12/12", "(EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 12) (YEAR_OF 12))"); - assertAST("3/4", "(EXPLICIT_DATE (MONTH_OF_YEAR 3) (DAY_OF_MONTH 4))"); - assertAST("sun, 11/21/2010", "(EXPLICIT_DATE (MONTH_OF_YEAR 11) (DAY_OF_MONTH 21) (DAY_OF_WEEK 1) (YEAR_OF 2010))"); - } - - @Test - public void formal_month_of_year() throws Exception { - _ruleName = "formal_month_of_year"; - - assertAST("01", "(MONTH_OF_YEAR 01)"); - assertAST("1", "(MONTH_OF_YEAR 1)"); - assertAST("02", "(MONTH_OF_YEAR 02)"); - assertAST("2", "(MONTH_OF_YEAR 2)"); - assertAST("03", "(MONTH_OF_YEAR 03)"); - assertAST("3", "(MONTH_OF_YEAR 3)"); - assertAST("04", "(MONTH_OF_YEAR 04)"); - assertAST("4", "(MONTH_OF_YEAR 4)"); - assertAST("05", "(MONTH_OF_YEAR 05)"); - assertAST("5", "(MONTH_OF_YEAR 5)"); - assertAST("06", "(MONTH_OF_YEAR 06)"); - assertAST("6", "(MONTH_OF_YEAR 6)"); - assertAST("07", "(MONTH_OF_YEAR 07)"); - assertAST("7", "(MONTH_OF_YEAR 7)"); - assertAST("08", "(MONTH_OF_YEAR 08)"); - assertAST("8", "(MONTH_OF_YEAR 8)"); - assertAST("09", "(MONTH_OF_YEAR 09)"); - assertAST("9", "(MONTH_OF_YEAR 9)"); - assertAST("10", "(MONTH_OF_YEAR 10)"); - assertAST("11", "(MONTH_OF_YEAR 11)"); - assertAST("12", "(MONTH_OF_YEAR 12)"); - //"00" FAIL - //"0" FAIL - //"13" FAIL - } - - @Test - public void formal_day_of_month() throws Exception { - _ruleName = "formal_day_of_month"; - - assertAST("01", "(DAY_OF_MONTH 01)"); - assertAST("1", "(DAY_OF_MONTH 1)"); - assertAST("02", "(DAY_OF_MONTH 02)"); - assertAST("2", "(DAY_OF_MONTH 2)"); - assertAST("03", "(DAY_OF_MONTH 03)"); - assertAST("3", "(DAY_OF_MONTH 3)"); - assertAST("04", "(DAY_OF_MONTH 04)"); - assertAST("4", "(DAY_OF_MONTH 4)"); - assertAST("05", "(DAY_OF_MONTH 05)"); - assertAST("5", "(DAY_OF_MONTH 5)"); - assertAST("06", "(DAY_OF_MONTH 06)"); - assertAST("6", "(DAY_OF_MONTH 6)"); - assertAST("07", "(DAY_OF_MONTH 07)"); - assertAST("7", "(DAY_OF_MONTH 7)"); - assertAST("08", "(DAY_OF_MONTH 08)"); - assertAST("8", "(DAY_OF_MONTH 8)"); - assertAST("09", "(DAY_OF_MONTH 09)"); - assertAST("9", "(DAY_OF_MONTH 9)"); - assertAST("10", "(DAY_OF_MONTH 10)"); - assertAST("11", "(DAY_OF_MONTH 11)"); - assertAST("12", "(DAY_OF_MONTH 12)"); - assertAST("13", "(DAY_OF_MONTH 13)"); - assertAST("14", "(DAY_OF_MONTH 14)"); - assertAST("15", "(DAY_OF_MONTH 15)"); - assertAST("16", "(DAY_OF_MONTH 16)"); - assertAST("17", "(DAY_OF_MONTH 17)"); - assertAST("18", "(DAY_OF_MONTH 18)"); - assertAST("19", "(DAY_OF_MONTH 19)"); - assertAST("20", "(DAY_OF_MONTH 20)"); - assertAST("21", "(DAY_OF_MONTH 21)"); - assertAST("22", "(DAY_OF_MONTH 22)"); - assertAST("23", "(DAY_OF_MONTH 23)"); - assertAST("24", "(DAY_OF_MONTH 24)"); - assertAST("25", "(DAY_OF_MONTH 25)"); - assertAST("26", "(DAY_OF_MONTH 26)"); - assertAST("27", "(DAY_OF_MONTH 27)"); - assertAST("28", "(DAY_OF_MONTH 28)"); - assertAST("29", "(DAY_OF_MONTH 29)"); - assertAST("30", "(DAY_OF_MONTH 30)"); - assertAST("31", "(DAY_OF_MONTH 31)"); - //"00" FAIL - //"0" FAIL - //"32" FAIL - } - - @Test - public void formal_year() throws Exception { - _ruleName = "formal_year"; - - assertAST("1999", "(YEAR_OF 1999)"); - assertAST("80", "(YEAR_OF 80)"); - assertAST("0000", "(YEAR_OF 0000)"); - assertAST("2010", "(YEAR_OF 2010)"); - assertAST("03", "(YEAR_OF 03)"); - //"037" FAIL - //"0" FAIL - //"03700" FAIL - } - - @Test - public void formal_year_four_digits() throws Exception { - _ruleName = "formal_year_four_digits"; - - assertAST("1999", "(YEAR_OF 1999)"); - assertAST("0000", "(YEAR_OF 0000)"); - assertAST("2010", "(YEAR_OF 2010)"); - //assertAST("80" FAIL - //assertAST("03" FAIL - //assertAST("037" FAIL - //assertAST("0" FAIL - //assertAST("03700" FAIL - } - - @Test - public void formal_date_separator() throws Exception { - _ruleName = "formal_date_separator"; - - assertAST("-", "-"); - assertAST("/", "/"); - } - - @Test - public void relative_date() throws Exception { - _ruleName = "relative_date"; - - assertAST("yesterday", "(RELATIVE_DATE (SEEK < by_day 1 day))"); - assertAST("tomorrow", "(RELATIVE_DATE (SEEK > by_day 1 day))"); - assertAST("in 3 days", "(RELATIVE_DATE (SEEK > by_day 3 day))"); - assertAST("3 days ago", "(RELATIVE_DATE (SEEK < by_day 3 day))"); - assertAST("in 3 weeks", "(RELATIVE_DATE (SEEK > by_day 3 week))"); - assertAST("four weeks ago", "(RELATIVE_DATE (SEEK < by_day 4 week))"); - assertAST("in 3 months", "(RELATIVE_DATE (SEEK > by_day 3 month))"); - assertAST("three months ago", "(RELATIVE_DATE (SEEK < by_day 3 month))"); - assertAST("in 3 years", "(RELATIVE_DATE (SEEK > by_day 3 year))"); - assertAST("seven years ago", "(RELATIVE_DATE (SEEK < by_day 7 year))"); - assertAST("60 years ago", "(RELATIVE_DATE (SEEK < by_day 60 year))"); - assertAST("32 days ago", "(RELATIVE_DATE (SEEK < by_day 32 day))"); - assertAST("150 days ago", "(RELATIVE_DATE (SEEK < by_day 150 day))"); - assertAST("1500 days ago", "(RELATIVE_DATE (SEEK < by_day 1500 day))"); - assertAST("next monday", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 2)))"); - assertAST("next mon", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 2)))"); - assertAST("4 mondays from now", "(RELATIVE_DATE (SEEK > by_day 4 (DAY_OF_WEEK 2)))"); - assertAST("4 mondays from today", "(RELATIVE_DATE (SEEK > by_day 4 (DAY_OF_WEEK 2)))"); - assertAST("next weekend", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 7)))"); - assertAST("six mondays ago", "(RELATIVE_DATE (SEEK < by_day 6 (DAY_OF_WEEK 2)))"); - assertAST("last monday", "(RELATIVE_DATE (SEEK < by_week 1 (DAY_OF_WEEK 2)))"); - assertAST("last mon", "(RELATIVE_DATE (SEEK < by_week 1 (DAY_OF_WEEK 2)))"); - assertAST("this past mon", "(RELATIVE_DATE (SEEK < by_day 1 (DAY_OF_WEEK 2)))"); - assertAST("this coming mon", "(RELATIVE_DATE (SEEK > by_day 1 (DAY_OF_WEEK 2)))"); - assertAST("this upcoming mon", "(RELATIVE_DATE (SEEK > by_day 1 (DAY_OF_WEEK 2)))"); - assertAST("next thurs", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 5)))"); - assertAST("next month", "(RELATIVE_DATE (SEEK > by_week 1 month))"); - assertAST("last month", "(RELATIVE_DATE (SEEK < by_week 1 month))"); - assertAST("next week", "(RELATIVE_DATE (SEEK > by_week 1 week))"); - assertAST("last week", "(RELATIVE_DATE (SEEK < by_week 1 week))"); - assertAST("next year", "(RELATIVE_DATE (SEEK > by_week 1 year))"); - assertAST("last year", "(RELATIVE_DATE (SEEK < by_week 1 year))"); - assertAST("1 year 2 months ago", "(RELATIVE_DATE (SEEK < by_day 1 year) (SEEK < by_day 2 month))"); - assertAST("1 year 2 months 3 days ago", "(RELATIVE_DATE (SEEK < by_day 1 year) (SEEK < by_day 2 month) (SEEK < by_day 3 day))"); - assertAST("5 years 9 days after now","(RELATIVE_DATE (SEEK > by_day 5 year) (SEEK > by_day 9 day))"); - assertAST("5 years 3 months 9 days from now","(RELATIVE_DATE (SEEK > by_day 5 year) (SEEK > by_day 3 month) (SEEK > by_day 9 day))"); - } - - @Test - public void explicit_relative_date() throws Exception { - _ruleName = "explicit_relative_date"; - - assertAST("monday of last week", - "(RELATIVE_DATE (SEEK < by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); - - assertAST("tuesday of next week", - "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 3)))"); - - assertAST("the monday of 2 weeks ago", - "(RELATIVE_DATE (SEEK < by_day 2 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); - - assertAST("tuesday of 3 weeks from now", - "(RELATIVE_DATE (SEEK > by_day 3 week) (EXPLICIT_SEEK (DAY_OF_WEEK 3)))"); - - assertAST("monday of 3 weeks from now", - "(RELATIVE_DATE (SEEK > by_day 3 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); - - assertAST("1st of three months ago", - "(RELATIVE_DATE (SEEK < by_day 3 month) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); - - assertAST("10th of next month", - "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 10)))"); - - assertAST("28th of last month", - "(RELATIVE_DATE (SEEK < by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 28)))"); - - assertAST("10th of next october", - "(RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 10)) (EXPLICIT_SEEK (DAY_OF_MONTH 10)))"); - - assertAST("the 30th of this month", - "(RELATIVE_DATE (SEEK > by_day 0 month) (EXPLICIT_SEEK (DAY_OF_MONTH 30)))"); - - assertAST("10th of the month after next", - "(RELATIVE_DATE (SEEK > by_day 2 month) (EXPLICIT_SEEK (DAY_OF_MONTH 10)))"); - - assertAST("the last thursday in november", - "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 5)))"); - - assertAST("the last thursday in november 1999", - "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK (YEAR_OF 1999)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 5)))"); - - assertAST("3rd wed in next month", - "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK 3 (DAY_OF_WEEK 4)))"); - - assertAST("the last sunday in november", - "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 1)))"); - - assertAST("the first wed. in january", - "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 1)) (EXPLICIT_SEEK 1 (DAY_OF_WEEK 4)))"); - - assertAST("the last day of february 1999", - "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 2)) (EXPLICIT_SEEK (DAY_OF_MONTH 31)) (EXPLICIT_SEEK (YEAR_OF 1999)))"); - - assertAST("the first wed. in january in the year 2004", - "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 1)) (EXPLICIT_SEEK (YEAR_OF 2004)) (EXPLICIT_SEEK 1 (DAY_OF_WEEK 4)))"); - - assertAST("last monday of last month", - "(RELATIVE_DATE (SEEK < by_week 1 month) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 2)))"); - - assertAST("the last sunday of next nov", - "(RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 1)))"); - - assertAST("the 3rd sunday of 2 novembers from now", - "(RELATIVE_DATE (SEEK > by_day 2 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 3 (DAY_OF_WEEK 1)))"); - - assertAST("the last monday in 2 novembers ago", - "(RELATIVE_DATE (SEEK < by_day 2 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 2)))"); - - assertAST("the beginning of next week", - "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); - - assertAST("the end of next week", - "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); - - assertAST("the end of this week", - "(RELATIVE_DATE (SEEK > by_day 0 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); - - assertAST("the start of this week", - "(RELATIVE_DATE (SEEK > by_day 0 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); - - assertAST("start of 3 weeks from now", - "(RELATIVE_DATE (SEEK > by_day 3 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); - - assertAST("the end of 3 weeks ago", - "(RELATIVE_DATE (SEEK < by_day 3 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); - - assertAST("the first day of this week", - "(RELATIVE_DATE (SEEK > by_day 0 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); - - assertAST("the last day of next week", - "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); - - assertAST("first day of next week", - "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); - - assertAST("last day of last week", - "(RELATIVE_DATE (SEEK < by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); - - assertAST("start of 3 months from now", - "(RELATIVE_DATE (SEEK > by_day 3 month) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); - - assertAST("beginning of next month", - "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); - - assertAST("end of next month", - "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); - - assertAST("last day of next month", - "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); - - assertAST("first day of 3 months from now", - "(RELATIVE_DATE (SEEK > by_day 3 month) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); - - assertAST("end of next october", - "(RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 10)) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); - - assertAST("first day of feb", - "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 2)) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); - - assertAST("last day of three februarys from now", - "(RELATIVE_DATE (SEEK > by_day 3 (MONTH_OF_YEAR 2)) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); - - assertAST("in the end of next week", - "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); - - assertAST("at the end of last week", - "(RELATIVE_DATE (SEEK < by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); - - assertAST("at the end of 2 weeks", - "(RELATIVE_DATE (SEEK > by_day 2 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); - - assertAST("in the start of june", - "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 6)) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); - - assertAST("at the end of next week", - "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); - - assertAST("at the end of last month", - "(RELATIVE_DATE (SEEK < by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); - - assertAST("the second day of april", - "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 4)) (EXPLICIT_SEEK (DAY_OF_MONTH 2)))"); - - assertAST("the thirtieth day of next april", - "(RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 4)) (EXPLICIT_SEEK (DAY_OF_MONTH 30)))"); - } - - @Test - public void relative_occurrence_index() throws Exception { - _ruleName = "relative_occurrence_index"; - - assertAST("1", "1"); - assertAST("2", "2"); - assertAST("3", "3"); - assertAST("4", "4"); - assertAST("5", "5"); - assertAST("first", "1"); - assertAST("second", "2"); - assertAST("third", "3"); - assertAST("fourth", "4"); - assertAST("fifth", "5"); - assertAST("last", "5"); - //assertAST("sixth" FAIL); - //assertAST("6" FAIL); - } - - @Test - public void relative_target() throws Exception { - _ruleName = "relative_target"; - - assertAST("sunday" , "(DAY_OF_WEEK 1)"); - assertAST("sundays" , "(DAY_OF_WEEK 1)"); - assertAST("sun" , "(DAY_OF_WEEK 1)"); - assertAST("monday" , "(DAY_OF_WEEK 2)"); - assertAST("mondays" , "(DAY_OF_WEEK 2)"); - assertAST("mon" , "(DAY_OF_WEEK 2)"); - assertAST("tuesday" , "(DAY_OF_WEEK 3)"); - assertAST("tuesdays" , "(DAY_OF_WEEK 3)"); - assertAST("tues" , "(DAY_OF_WEEK 3)"); - assertAST("tue" , "(DAY_OF_WEEK 3)"); - assertAST("wednesday" , "(DAY_OF_WEEK 4)"); - assertAST("wednesdays", "(DAY_OF_WEEK 4)"); - assertAST("wed" , "(DAY_OF_WEEK 4)"); - assertAST("thursday" , "(DAY_OF_WEEK 5)"); - assertAST("thursdays" , "(DAY_OF_WEEK 5)"); - assertAST("thur" , "(DAY_OF_WEEK 5)"); - assertAST("thu" , "(DAY_OF_WEEK 5)"); - assertAST("friday" , "(DAY_OF_WEEK 6)"); - assertAST("fridays" , "(DAY_OF_WEEK 6)"); - assertAST("fri" , "(DAY_OF_WEEK 6)"); - assertAST("saturday" , "(DAY_OF_WEEK 7)"); - assertAST("saturdays" , "(DAY_OF_WEEK 7)"); - assertAST("sat" , "(DAY_OF_WEEK 7)"); - assertAST("day", "day"); - assertAST("days", "day"); - assertAST("week", "week"); - assertAST("weeks", "week"); - assertAST("month", "month"); - assertAST("months", "month"); - assertAST("year", "year"); - assertAST("years", "year"); - } - - @Test - public void relaxed_day_of_month() throws Exception { - _ruleName = "relaxed_day_of_month"; - - assertAST("three", "(DAY_OF_MONTH 3)"); - assertAST("third", "(DAY_OF_MONTH 3)"); - assertAST("3rd", "(DAY_OF_MONTH 3)"); - assertAST("3", "(DAY_OF_MONTH 3)"); - assertAST("03", "(DAY_OF_MONTH 03)"); - assertAST("21", "(DAY_OF_MONTH 21)"); - assertAST("thirty one", "(DAY_OF_MONTH 31)"); - assertAST("thirty-one", "(DAY_OF_MONTH 31)"); - assertAST("thirty first", "(DAY_OF_MONTH 31)"); - assertAST("thirty-first", "(DAY_OF_MONTH 31)"); - assertAST("31st", "(DAY_OF_MONTH 31)"); - //assertAST("32" FAIL - } - - @Test - public void relaxed_year() throws Exception { - _ruleName = "relaxed_year"; - - assertAST("'69", "(YEAR_OF 69)"); - assertAST("79", "(YEAR_OF 79)"); - assertAST("2079", "(YEAR_OF 2079)"); - assertAST("'80", "(YEAR_OF 80)"); - assertAST("1979", "(YEAR_OF 1979)"); - assertAST("2004", "(YEAR_OF 2004)"); - //assertAST("999" FAIL"); - //assertAST("999" FAIL"); - } - - @Test - public void relaxed_year_prefix() throws Exception { - _ruleName = "relaxed_year_prefix"; - - //assertAST(", in the year ", ", in the year"); - //assertAST(" in the year ", " in the year"); - //assertAST("in the year ", "in the year"); - //assertAST("in the yesr ", "in the year"); - } - - @Test - public void implicit_prefix() throws Exception { - _ruleName = "implicit_prefix"; - - assertAST("this", "> by_day 0"); - } - - @Test - public void relative_date_prefix() throws Exception { - _ruleName = "relative_date_prefix"; - - assertAST("this last" , "< by_week 1"); - assertAST("last" , "< by_week 1"); - assertAST("this past" , "< by_day 1"); - assertAST("past" , "< by_day 1"); - assertAST("this next" , "> by_week 1"); - assertAST("next" , "> by_week 1"); - assertAST("this coming" , "> by_day 1"); - assertAST("coming" , "> by_day 1"); - assertAST("this upcoming", "> by_day 1"); - assertAST("upcoming" , "> by_day 1"); - assertAST("3" , "> by_day 3"); - assertAST("twenty-eight" , "> by_day 28"); - //assertAST("in 3" , "> by_day 3"); - //assertAST("in twenty" , "> by_day 20"); - } - - @Test - public void relative_date_suffix() throws Exception { - _ruleName = "relative_date_suffix"; - - assertAST("from now", "> by_day"); - assertAST("ago", "< by_day"); - } - - @Test - public void relative_date_span() throws Exception { - _ruleName = "relative_date_span"; - - assertAST("day", "day"); - assertAST("days", "day"); - assertAST("week", "week"); - assertAST("weeks", "week"); - assertAST("month", "month"); - assertAST("months", "month"); - assertAST("year", "year"); - assertAST("years", "year"); - } - - @Test - public void relaxed_month() throws Exception { - _ruleName = "relaxed_month"; - - assertAST("january", "(MONTH_OF_YEAR 1)"); - assertAST("jan", "(MONTH_OF_YEAR 1)"); - assertAST("february", "(MONTH_OF_YEAR 2)"); - assertAST("feb", "(MONTH_OF_YEAR 2)"); - assertAST("march", "(MONTH_OF_YEAR 3)"); - assertAST("mar", "(MONTH_OF_YEAR 3)"); - assertAST("april", "(MONTH_OF_YEAR 4)"); - assertAST("apr", "(MONTH_OF_YEAR 4)"); - assertAST("may", "(MONTH_OF_YEAR 5)"); - assertAST("june", "(MONTH_OF_YEAR 6)"); - assertAST("jun", "(MONTH_OF_YEAR 6)"); - assertAST("july", "(MONTH_OF_YEAR 7)"); - assertAST("jul", "(MONTH_OF_YEAR 7)"); - assertAST("august", "(MONTH_OF_YEAR 8)"); - assertAST("aug", "(MONTH_OF_YEAR 8)"); - assertAST("september", "(MONTH_OF_YEAR 9)"); - assertAST("sep", "(MONTH_OF_YEAR 9)"); - assertAST("sept", "(MONTH_OF_YEAR 9)"); - assertAST("october", "(MONTH_OF_YEAR 10)"); - assertAST("oct", "(MONTH_OF_YEAR 10)"); - assertAST("november", "(MONTH_OF_YEAR 11)"); - assertAST("nov", "(MONTH_OF_YEAR 11)"); - assertAST("december", "(MONTH_OF_YEAR 12)"); - assertAST("dec", "(MONTH_OF_YEAR 12)"); - assertAST("jan.", "(MONTH_OF_YEAR 1)"); - assertAST("feb.", "(MONTH_OF_YEAR 2)"); - assertAST("mar.", "(MONTH_OF_YEAR 3)"); - assertAST("apr.", "(MONTH_OF_YEAR 4)"); - assertAST("jun.", "(MONTH_OF_YEAR 6)"); - assertAST("jul.", "(MONTH_OF_YEAR 7)"); - assertAST("aug.", "(MONTH_OF_YEAR 8)"); - assertAST("sep.", "(MONTH_OF_YEAR 9)"); - assertAST("sept.", "(MONTH_OF_YEAR 9)"); - assertAST("oct.", "(MONTH_OF_YEAR 10)"); - assertAST("nov.", "(MONTH_OF_YEAR 11)"); - assertAST("dec.", "(MONTH_OF_YEAR 12)"); - } - - @Test - public void day_of_week() throws Exception { - _ruleName = "day_of_week"; - - assertAST("sunday" , "(DAY_OF_WEEK 1)"); - assertAST("sundays" , "(DAY_OF_WEEK 1)"); - assertAST("sun" , "(DAY_OF_WEEK 1)"); - assertAST("sun." , "(DAY_OF_WEEK 1)"); - assertAST("monday" , "(DAY_OF_WEEK 2)"); - assertAST("mondays" , "(DAY_OF_WEEK 2)"); - assertAST("mon" , "(DAY_OF_WEEK 2)"); - assertAST("mon." , "(DAY_OF_WEEK 2)"); - assertAST("tuesday" , "(DAY_OF_WEEK 3)"); - assertAST("tuesdays" , "(DAY_OF_WEEK 3)"); - assertAST("tues" , "(DAY_OF_WEEK 3)"); - assertAST("tues." , "(DAY_OF_WEEK 3)"); - assertAST("tue" , "(DAY_OF_WEEK 3)"); - assertAST("tue." , "(DAY_OF_WEEK 3)"); - assertAST("wednesday" , "(DAY_OF_WEEK 4)"); - assertAST("wednesdays", "(DAY_OF_WEEK 4)"); - assertAST("wed" , "(DAY_OF_WEEK 4)"); - assertAST("wed." , "(DAY_OF_WEEK 4)"); - assertAST("thursday" , "(DAY_OF_WEEK 5)"); - assertAST("thursdays" , "(DAY_OF_WEEK 5)"); - assertAST("thur" , "(DAY_OF_WEEK 5)"); - assertAST("thur." , "(DAY_OF_WEEK 5)"); - assertAST("thu" , "(DAY_OF_WEEK 5)"); - assertAST("thu." , "(DAY_OF_WEEK 5)"); - assertAST("friday" , "(DAY_OF_WEEK 6)"); - assertAST("fridays" , "(DAY_OF_WEEK 6)"); - assertAST("fri" , "(DAY_OF_WEEK 6)"); - assertAST("fri." , "(DAY_OF_WEEK 6)"); - assertAST("saturday" , "(DAY_OF_WEEK 7)"); - assertAST("saturdays" , "(DAY_OF_WEEK 7)"); - assertAST("sat" , "(DAY_OF_WEEK 7)"); - assertAST("sat." , "(DAY_OF_WEEK 7)"); - } - - @Test - public void named_relative_date() throws Exception { - _ruleName = "named_relative_date"; - - assertAST("today", "(RELATIVE_DATE (SEEK > by_day 0 day))"); - assertAST("now", "(RELATIVE_DATE (SEEK > by_day 0 day))"); - assertAST("tomorow" , "(RELATIVE_DATE (SEEK > by_day 1 day))"); - assertAST("tomorrow" , "(RELATIVE_DATE (SEEK > by_day 1 day))"); - assertAST("tommorow" , "(RELATIVE_DATE (SEEK > by_day 1 day))"); - assertAST("tommorrow", "(RELATIVE_DATE (SEEK > by_day 1 day))"); - assertAST("yesterday", "(RELATIVE_DATE (SEEK < by_day 1 day))"); - } + +import org.junit.jupiter.api.Test; + +class DateGrammarTest extends AbstractGrammarTest { + @Test + void date() throws Exception { + ruleName = "date"; + + assertAST("the day before yesterday", "(RELATIVE_DATE (SEEK < by_day 1 (RELATIVE_DATE (SEEK < by_day 1 day))))"); + assertAST("1st oct in the year '89", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89))"); + assertAST("2009-10-10", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 10) (YEAR_OF 2009))"); + assertAST("seven years ago", "(RELATIVE_DATE (SEEK < by_day 7 year))"); + assertAST("next monday", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 2)))"); + } + + @Test + void alternative_day_of_month_list() throws Exception { + ruleName = "alternative_day_of_month_list"; + + assertAST("mon may 15 or 16", + "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); + + assertAST("mon may 15 to 16", + "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); + + assertAST("mon may 15 and 16", + "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); + + assertAST("mon may 15 through 16", + "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); + + assertAST("mon may 15 or 16", + "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 15))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 16)))"); + + assertAST("first or last day of september", + "(DATE_TIME (RELATIVE_DATE (EXPLICIT_SEEK (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))) (DATE_TIME (RELATIVE_DATE (EXPLICIT_SEEK (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 31))))"); + + assertAST("first or last day of september at 5pm", + "(DATE_TIME (RELATIVE_DATE (EXPLICIT_SEEK (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 1))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (EXPLICIT_SEEK (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 31))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm))"); + + + assertAST("first or last day of next september at 6am", + "(DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 1))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am)) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 31))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am))"); + + assertAST("first or last day of 2 septembers from now at 5pm", + "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 1))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK (DAY_OF_MONTH 31))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm))"); + } + + @Test + void global_date_prefix() throws Exception { + ruleName = "global_date_prefix"; + + assertAST("the day after", "> by_day 1"); + assertAST("day after", "> by_day 1"); + assertAST("2 days after", "> by_day 2"); + assertAST("three days before", "< by_day 3"); + assertAST("six months after", "> by_month 6"); + assertAST("3 weeks before", "< by_week 3"); + assertAST("10 years after", "> by_year 10"); + assertAST("the day before", "< by_day 1"); + assertAST("day before", "< by_day 1"); + } + + @Test + void relaxed_date() throws Exception { + ruleName = "relaxed_date"; + + assertAST("oct 1, 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 1980))"); + assertAST("oct. 1, 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 1980))"); + assertAST("oct 1,1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 1980))"); + assertAST("1st oct in the year '89", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89))"); + assertAST("thirty first of december '80", "(EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 31) (YEAR_OF 80))"); + assertAST("the first of december in the year 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 1) (YEAR_OF 1980))"); + assertAST("the 2 of february in the year 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 2) (YEAR_OF 1980))"); + assertAST("the 2nd of february in the year 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 2) (YEAR_OF 1980))"); + assertAST("the second of february in the year 1980", "(EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 2) (YEAR_OF 1980))"); + assertAST("jan. 2nd", "(EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 2))"); + assertAST("sun, nov 21 2010", "(EXPLICIT_DATE (MONTH_OF_YEAR 11) (DAY_OF_MONTH 21) (DAY_OF_WEEK 1) (YEAR_OF 2010))"); + } + + @Test + void formal_date() throws Exception { + ruleName = "formal_date"; + + assertAST("2009-10-10", "(EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 10) (YEAR_OF 2009))"); + assertAST("1980-1-2", "(EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 2) (YEAR_OF 1980))"); + assertAST("12/12/12", "(EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 12) (YEAR_OF 12))"); + assertAST("3/4", "(EXPLICIT_DATE (MONTH_OF_YEAR 3) (DAY_OF_MONTH 4))"); + assertAST("sun, 11/21/2010", "(EXPLICIT_DATE (MONTH_OF_YEAR 11) (DAY_OF_MONTH 21) (DAY_OF_WEEK 1) (YEAR_OF 2010))"); + } + + @Test + void formal_month_of_year() throws Exception { + ruleName = "formal_month_of_year"; + + assertAST("01", "(MONTH_OF_YEAR 01)"); + assertAST("1", "(MONTH_OF_YEAR 1)"); + assertAST("02", "(MONTH_OF_YEAR 02)"); + assertAST("2", "(MONTH_OF_YEAR 2)"); + assertAST("03", "(MONTH_OF_YEAR 03)"); + assertAST("3", "(MONTH_OF_YEAR 3)"); + assertAST("04", "(MONTH_OF_YEAR 04)"); + assertAST("4", "(MONTH_OF_YEAR 4)"); + assertAST("05", "(MONTH_OF_YEAR 05)"); + assertAST("5", "(MONTH_OF_YEAR 5)"); + assertAST("06", "(MONTH_OF_YEAR 06)"); + assertAST("6", "(MONTH_OF_YEAR 6)"); + assertAST("07", "(MONTH_OF_YEAR 07)"); + assertAST("7", "(MONTH_OF_YEAR 7)"); + assertAST("08", "(MONTH_OF_YEAR 08)"); + assertAST("8", "(MONTH_OF_YEAR 8)"); + assertAST("09", "(MONTH_OF_YEAR 09)"); + assertAST("9", "(MONTH_OF_YEAR 9)"); + assertAST("10", "(MONTH_OF_YEAR 10)"); + assertAST("11", "(MONTH_OF_YEAR 11)"); + assertAST("12", "(MONTH_OF_YEAR 12)"); + //"00" FAIL + //"0" FAIL + //"13" FAIL + } + + @Test + void formal_day_of_month() throws Exception { + ruleName = "formal_day_of_month"; + + assertAST("01", "(DAY_OF_MONTH 01)"); + assertAST("1", "(DAY_OF_MONTH 1)"); + assertAST("02", "(DAY_OF_MONTH 02)"); + assertAST("2", "(DAY_OF_MONTH 2)"); + assertAST("03", "(DAY_OF_MONTH 03)"); + assertAST("3", "(DAY_OF_MONTH 3)"); + assertAST("04", "(DAY_OF_MONTH 04)"); + assertAST("4", "(DAY_OF_MONTH 4)"); + assertAST("05", "(DAY_OF_MONTH 05)"); + assertAST("5", "(DAY_OF_MONTH 5)"); + assertAST("06", "(DAY_OF_MONTH 06)"); + assertAST("6", "(DAY_OF_MONTH 6)"); + assertAST("07", "(DAY_OF_MONTH 07)"); + assertAST("7", "(DAY_OF_MONTH 7)"); + assertAST("08", "(DAY_OF_MONTH 08)"); + assertAST("8", "(DAY_OF_MONTH 8)"); + assertAST("09", "(DAY_OF_MONTH 09)"); + assertAST("9", "(DAY_OF_MONTH 9)"); + assertAST("10", "(DAY_OF_MONTH 10)"); + assertAST("11", "(DAY_OF_MONTH 11)"); + assertAST("12", "(DAY_OF_MONTH 12)"); + assertAST("13", "(DAY_OF_MONTH 13)"); + assertAST("14", "(DAY_OF_MONTH 14)"); + assertAST("15", "(DAY_OF_MONTH 15)"); + assertAST("16", "(DAY_OF_MONTH 16)"); + assertAST("17", "(DAY_OF_MONTH 17)"); + assertAST("18", "(DAY_OF_MONTH 18)"); + assertAST("19", "(DAY_OF_MONTH 19)"); + assertAST("20", "(DAY_OF_MONTH 20)"); + assertAST("21", "(DAY_OF_MONTH 21)"); + assertAST("22", "(DAY_OF_MONTH 22)"); + assertAST("23", "(DAY_OF_MONTH 23)"); + assertAST("24", "(DAY_OF_MONTH 24)"); + assertAST("25", "(DAY_OF_MONTH 25)"); + assertAST("26", "(DAY_OF_MONTH 26)"); + assertAST("27", "(DAY_OF_MONTH 27)"); + assertAST("28", "(DAY_OF_MONTH 28)"); + assertAST("29", "(DAY_OF_MONTH 29)"); + assertAST("30", "(DAY_OF_MONTH 30)"); + assertAST("31", "(DAY_OF_MONTH 31)"); + //"00" FAIL + //"0" FAIL + //"32" FAIL + } + + @Test + void formal_year() throws Exception { + ruleName = "formal_year"; + + assertAST("1999", "(YEAR_OF 1999)"); + assertAST("80", "(YEAR_OF 80)"); + assertAST("0000", "(YEAR_OF 0000)"); + assertAST("2010", "(YEAR_OF 2010)"); + assertAST("03", "(YEAR_OF 03)"); + //"037" FAIL + //"0" FAIL + //"03700" FAIL + } + + @Test + void formal_year_four_digits() throws Exception { + ruleName = "formal_year_four_digits"; + + assertAST("1999", "(YEAR_OF 1999)"); + assertAST("0000", "(YEAR_OF 0000)"); + assertAST("2010", "(YEAR_OF 2010)"); + //assertAST("80" FAIL + //assertAST("03" FAIL + //assertAST("037" FAIL + //assertAST("0" FAIL + //assertAST("03700" FAIL + } + + @Test + void formal_date_separator() throws Exception { + ruleName = "formal_date_separator"; + + assertAST("-", "-"); + assertAST("/", "/"); + } + + @Test + void relative_date() throws Exception { + ruleName = "relative_date"; + + assertAST("yesterday", "(RELATIVE_DATE (SEEK < by_day 1 day))"); + assertAST("tomorrow", "(RELATIVE_DATE (SEEK > by_day 1 day))"); + assertAST("in 3 days", "(RELATIVE_DATE (SEEK > by_day 3 day))"); + assertAST("3 days ago", "(RELATIVE_DATE (SEEK < by_day 3 day))"); + assertAST("in 3 weeks", "(RELATIVE_DATE (SEEK > by_day 3 week))"); + assertAST("four weeks ago", "(RELATIVE_DATE (SEEK < by_day 4 week))"); + assertAST("in 3 months", "(RELATIVE_DATE (SEEK > by_day 3 month))"); + assertAST("three months ago", "(RELATIVE_DATE (SEEK < by_day 3 month))"); + assertAST("in 3 years", "(RELATIVE_DATE (SEEK > by_day 3 year))"); + assertAST("seven years ago", "(RELATIVE_DATE (SEEK < by_day 7 year))"); + assertAST("60 years ago", "(RELATIVE_DATE (SEEK < by_day 60 year))"); + assertAST("32 days ago", "(RELATIVE_DATE (SEEK < by_day 32 day))"); + assertAST("150 days ago", "(RELATIVE_DATE (SEEK < by_day 150 day))"); + assertAST("1500 days ago", "(RELATIVE_DATE (SEEK < by_day 1500 day))"); + assertAST("next monday", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 2)))"); + assertAST("next mon", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 2)))"); + assertAST("4 mondays from now", "(RELATIVE_DATE (SEEK > by_day 4 (DAY_OF_WEEK 2)))"); + assertAST("4 mondays from today", "(RELATIVE_DATE (SEEK > by_day 4 (DAY_OF_WEEK 2)))"); + assertAST("next weekend", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 7)))"); + assertAST("six mondays ago", "(RELATIVE_DATE (SEEK < by_day 6 (DAY_OF_WEEK 2)))"); + assertAST("last monday", "(RELATIVE_DATE (SEEK < by_week 1 (DAY_OF_WEEK 2)))"); + assertAST("last mon", "(RELATIVE_DATE (SEEK < by_week 1 (DAY_OF_WEEK 2)))"); + assertAST("this past mon", "(RELATIVE_DATE (SEEK < by_day 1 (DAY_OF_WEEK 2)))"); + assertAST("this coming mon", "(RELATIVE_DATE (SEEK > by_day 1 (DAY_OF_WEEK 2)))"); + assertAST("this upcoming mon", "(RELATIVE_DATE (SEEK > by_day 1 (DAY_OF_WEEK 2)))"); + assertAST("next thurs", "(RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 5)))"); + assertAST("next month", "(RELATIVE_DATE (SEEK > by_week 1 month))"); + assertAST("last month", "(RELATIVE_DATE (SEEK < by_week 1 month))"); + assertAST("next week", "(RELATIVE_DATE (SEEK > by_week 1 week))"); + assertAST("last week", "(RELATIVE_DATE (SEEK < by_week 1 week))"); + assertAST("next year", "(RELATIVE_DATE (SEEK > by_week 1 year))"); + assertAST("last year", "(RELATIVE_DATE (SEEK < by_week 1 year))"); + assertAST("1 year 2 months ago", "(RELATIVE_DATE (SEEK < by_day 1 year) (SEEK < by_day 2 month))"); + assertAST("1 year 2 months 3 days ago", "(RELATIVE_DATE (SEEK < by_day 1 year) (SEEK < by_day 2 month) (SEEK < by_day 3 day))"); + assertAST("5 years 9 days after now", "(RELATIVE_DATE (SEEK > by_day 5 year) (SEEK > by_day 9 day))"); + assertAST("5 years 3 months 9 days from now", "(RELATIVE_DATE (SEEK > by_day 5 year) (SEEK > by_day 3 month) (SEEK > by_day 9 day))"); + } + + @Test + void explicit_relative_date() throws Exception { + ruleName = "explicit_relative_date"; + + assertAST("monday of last week", + "(RELATIVE_DATE (SEEK < by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); + + assertAST("tuesday of next week", + "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 3)))"); + + assertAST("the monday of 2 weeks ago", + "(RELATIVE_DATE (SEEK < by_day 2 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); + + assertAST("tuesday of 3 weeks from now", + "(RELATIVE_DATE (SEEK > by_day 3 week) (EXPLICIT_SEEK (DAY_OF_WEEK 3)))"); + + assertAST("monday of 3 weeks from now", + "(RELATIVE_DATE (SEEK > by_day 3 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); + + assertAST("1st of three months ago", + "(RELATIVE_DATE (SEEK < by_day 3 month) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); + + assertAST("10th of next month", + "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 10)))"); + + assertAST("28th of last month", + "(RELATIVE_DATE (SEEK < by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 28)))"); + + assertAST("10th of next october", + "(RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 10)) (EXPLICIT_SEEK (DAY_OF_MONTH 10)))"); + + assertAST("the 30th of this month", + "(RELATIVE_DATE (SEEK > by_day 0 month) (EXPLICIT_SEEK (DAY_OF_MONTH 30)))"); + + assertAST("10th of the month after next", + "(RELATIVE_DATE (SEEK > by_day 2 month) (EXPLICIT_SEEK (DAY_OF_MONTH 10)))"); + + assertAST("the last thursday in november", + "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 5)))"); + + assertAST("the last thursday in november 1999", + "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK (YEAR_OF 1999)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 5)))"); + + assertAST("3rd wed in next month", + "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK 3 (DAY_OF_WEEK 4)))"); + + assertAST("the last sunday in november", + "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 1)))"); + + assertAST("the first wed. in january", + "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 1)) (EXPLICIT_SEEK 1 (DAY_OF_WEEK 4)))"); + + assertAST("the last day of february 1999", + "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 2)) (EXPLICIT_SEEK (DAY_OF_MONTH 31)) (EXPLICIT_SEEK (YEAR_OF 1999)))"); + + assertAST("the first wed. in january in the year 2004", + "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 1)) (EXPLICIT_SEEK (YEAR_OF 2004)) (EXPLICIT_SEEK 1 (DAY_OF_WEEK 4)))"); + + assertAST("last monday of last month", + "(RELATIVE_DATE (SEEK < by_week 1 month) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 2)))"); + + assertAST("the last sunday of next nov", + "(RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 1)))"); + + assertAST("the 3rd sunday of 2 novembers from now", + "(RELATIVE_DATE (SEEK > by_day 2 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 3 (DAY_OF_WEEK 1)))"); + + assertAST("the last monday in 2 novembers ago", + "(RELATIVE_DATE (SEEK < by_day 2 (MONTH_OF_YEAR 11)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 2)))"); + + assertAST("the beginning of next week", + "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); + + assertAST("the end of next week", + "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); + + assertAST("the end of this week", + "(RELATIVE_DATE (SEEK > by_day 0 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); + + assertAST("the start of this week", + "(RELATIVE_DATE (SEEK > by_day 0 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); + + assertAST("start of 3 weeks from now", + "(RELATIVE_DATE (SEEK > by_day 3 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); + + assertAST("the end of 3 weeks ago", + "(RELATIVE_DATE (SEEK < by_day 3 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); + + assertAST("the first day of this week", + "(RELATIVE_DATE (SEEK > by_day 0 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); + + assertAST("the last day of next week", + "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); + + assertAST("first day of next week", + "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 2)))"); + + assertAST("last day of last week", + "(RELATIVE_DATE (SEEK < by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); + + assertAST("start of 3 months from now", + "(RELATIVE_DATE (SEEK > by_day 3 month) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); + + assertAST("beginning of next month", + "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); + + assertAST("end of next month", + "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); + + assertAST("last day of next month", + "(RELATIVE_DATE (SEEK > by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); + + assertAST("first day of 3 months from now", + "(RELATIVE_DATE (SEEK > by_day 3 month) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); + + assertAST("end of next october", + "(RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 10)) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); + + assertAST("first day of feb", + "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 2)) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); + + assertAST("last day of three februarys from now", + "(RELATIVE_DATE (SEEK > by_day 3 (MONTH_OF_YEAR 2)) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); + + assertAST("in the end of next week", + "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); + + assertAST("at the end of last week", + "(RELATIVE_DATE (SEEK < by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); + + assertAST("at the end of 2 weeks", + "(RELATIVE_DATE (SEEK > by_day 2 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); + + assertAST("in the start of june", + "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 6)) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))"); + + assertAST("at the end of next week", + "(RELATIVE_DATE (SEEK > by_week 1 week) (EXPLICIT_SEEK (DAY_OF_WEEK 6)))"); + + assertAST("at the end of last month", + "(RELATIVE_DATE (SEEK < by_week 1 month) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))"); + + assertAST("the second day of april", + "(RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 4)) (EXPLICIT_SEEK (DAY_OF_MONTH 2)))"); + + assertAST("the thirtieth day of next april", + "(RELATIVE_DATE (SEEK > by_week 1 (MONTH_OF_YEAR 4)) (EXPLICIT_SEEK (DAY_OF_MONTH 30)))"); + } + + @Test + void relative_occurrence_index() throws Exception { + ruleName = "relative_occurrence_index"; + + assertAST("1", "1"); + assertAST("2", "2"); + assertAST("3", "3"); + assertAST("4", "4"); + assertAST("5", "5"); + assertAST("first", "1"); + assertAST("second", "2"); + assertAST("third", "3"); + assertAST("fourth", "4"); + assertAST("fifth", "5"); + assertAST("last", "5"); + //assertAST("sixth" FAIL); + //assertAST("6" FAIL); + } + + @Test + void relative_target() throws Exception { + ruleName = "relative_target"; + + assertAST("sunday", "(DAY_OF_WEEK 1)"); + assertAST("sundays", "(DAY_OF_WEEK 1)"); + assertAST("sun", "(DAY_OF_WEEK 1)"); + assertAST("monday", "(DAY_OF_WEEK 2)"); + assertAST("mondays", "(DAY_OF_WEEK 2)"); + assertAST("mon", "(DAY_OF_WEEK 2)"); + assertAST("tuesday", "(DAY_OF_WEEK 3)"); + assertAST("tuesdays", "(DAY_OF_WEEK 3)"); + assertAST("tues", "(DAY_OF_WEEK 3)"); + assertAST("tue", "(DAY_OF_WEEK 3)"); + assertAST("wednesday", "(DAY_OF_WEEK 4)"); + assertAST("wednesdays", "(DAY_OF_WEEK 4)"); + assertAST("wed", "(DAY_OF_WEEK 4)"); + assertAST("thursday", "(DAY_OF_WEEK 5)"); + assertAST("thursdays", "(DAY_OF_WEEK 5)"); + assertAST("thur", "(DAY_OF_WEEK 5)"); + assertAST("thu", "(DAY_OF_WEEK 5)"); + assertAST("friday", "(DAY_OF_WEEK 6)"); + assertAST("fridays", "(DAY_OF_WEEK 6)"); + assertAST("fri", "(DAY_OF_WEEK 6)"); + assertAST("saturday", "(DAY_OF_WEEK 7)"); + assertAST("saturdays", "(DAY_OF_WEEK 7)"); + assertAST("sat", "(DAY_OF_WEEK 7)"); + assertAST("day", "day"); + assertAST("days", "day"); + assertAST("week", "week"); + assertAST("weeks", "week"); + assertAST("month", "month"); + assertAST("months", "month"); + assertAST("year", "year"); + assertAST("years", "year"); + } + + @Test + void relaxed_day_of_month() throws Exception { + ruleName = "relaxed_day_of_month"; + + assertAST("three", "(DAY_OF_MONTH 3)"); + assertAST("third", "(DAY_OF_MONTH 3)"); + assertAST("3rd", "(DAY_OF_MONTH 3)"); + assertAST("3", "(DAY_OF_MONTH 3)"); + assertAST("03", "(DAY_OF_MONTH 03)"); + assertAST("21", "(DAY_OF_MONTH 21)"); + assertAST("thirty one", "(DAY_OF_MONTH 31)"); + assertAST("thirty-one", "(DAY_OF_MONTH 31)"); + assertAST("thirty first", "(DAY_OF_MONTH 31)"); + assertAST("thirty-first", "(DAY_OF_MONTH 31)"); + assertAST("31st", "(DAY_OF_MONTH 31)"); + //assertAST("32" FAIL + } + + @Test + void relaxed_year() throws Exception { + ruleName = "relaxed_year"; + + assertAST("'69", "(YEAR_OF 69)"); + assertAST("79", "(YEAR_OF 79)"); + assertAST("2079", "(YEAR_OF 2079)"); + assertAST("'80", "(YEAR_OF 80)"); + assertAST("1979", "(YEAR_OF 1979)"); + assertAST("2004", "(YEAR_OF 2004)"); + assertAST("999", "(YEAR_OF 999)"); + //assertAST("999" FAIL"); + } + + @Test + void relaxed_year_prefix() throws Exception { + ruleName = "relaxed_year_prefix"; + + //assertAST(", in the year ", ", in the year"); + //assertAST(" in the year ", " in the year"); + //assertAST("in the year ", "in the year"); + //assertAST("in the yesr ", "in the year"); + } + + @Test + void implicit_prefix() throws Exception { + ruleName = "implicit_prefix"; + + assertAST("this", "> by_day 0"); + } + + @Test + void relative_date_prefix() throws Exception { + ruleName = "relative_date_prefix"; + + assertAST("this last", "< by_week 1"); + assertAST("last", "< by_week 1"); + assertAST("this past", "< by_day 1"); + assertAST("past", "< by_day 1"); + assertAST("this next", "> by_week 1"); + assertAST("next", "> by_week 1"); + assertAST("this coming", "> by_day 1"); + assertAST("coming", "> by_day 1"); + assertAST("this upcoming", "> by_day 1"); + assertAST("upcoming", "> by_day 1"); + assertAST("3", "> by_day 3"); + assertAST("twenty-eight", "> by_day 28"); + //assertAST("in 3" , "> by_day 3"); + //assertAST("in twenty" , "> by_day 20"); + } + + @Test + void relative_date_suffix() throws Exception { + ruleName = "relative_date_suffix"; + + assertAST("from now", "> by_day"); + assertAST("ago", "< by_day"); + } + + @Test + void relative_date_span() throws Exception { + ruleName = "relative_date_span"; + + assertAST("day", "day"); + assertAST("days", "day"); + assertAST("week", "week"); + assertAST("weeks", "week"); + assertAST("month", "month"); + assertAST("months", "month"); + assertAST("year", "year"); + assertAST("years", "year"); + } + + @Test + void relaxed_month() throws Exception { + ruleName = "relaxed_month"; + + assertAST("january", "(MONTH_OF_YEAR 1)"); + assertAST("jan", "(MONTH_OF_YEAR 1)"); + assertAST("february", "(MONTH_OF_YEAR 2)"); + assertAST("feb", "(MONTH_OF_YEAR 2)"); + assertAST("march", "(MONTH_OF_YEAR 3)"); + assertAST("mar", "(MONTH_OF_YEAR 3)"); + assertAST("april", "(MONTH_OF_YEAR 4)"); + assertAST("apr", "(MONTH_OF_YEAR 4)"); + assertAST("may", "(MONTH_OF_YEAR 5)"); + assertAST("june", "(MONTH_OF_YEAR 6)"); + assertAST("jun", "(MONTH_OF_YEAR 6)"); + assertAST("july", "(MONTH_OF_YEAR 7)"); + assertAST("jul", "(MONTH_OF_YEAR 7)"); + assertAST("august", "(MONTH_OF_YEAR 8)"); + assertAST("aug", "(MONTH_OF_YEAR 8)"); + assertAST("september", "(MONTH_OF_YEAR 9)"); + assertAST("sep", "(MONTH_OF_YEAR 9)"); + assertAST("sept", "(MONTH_OF_YEAR 9)"); + assertAST("october", "(MONTH_OF_YEAR 10)"); + assertAST("oct", "(MONTH_OF_YEAR 10)"); + assertAST("november", "(MONTH_OF_YEAR 11)"); + assertAST("nov", "(MONTH_OF_YEAR 11)"); + assertAST("december", "(MONTH_OF_YEAR 12)"); + assertAST("dec", "(MONTH_OF_YEAR 12)"); + assertAST("jan.", "(MONTH_OF_YEAR 1)"); + assertAST("feb.", "(MONTH_OF_YEAR 2)"); + assertAST("mar.", "(MONTH_OF_YEAR 3)"); + assertAST("apr.", "(MONTH_OF_YEAR 4)"); + assertAST("jun.", "(MONTH_OF_YEAR 6)"); + assertAST("jul.", "(MONTH_OF_YEAR 7)"); + assertAST("aug.", "(MONTH_OF_YEAR 8)"); + assertAST("sep.", "(MONTH_OF_YEAR 9)"); + assertAST("sept.", "(MONTH_OF_YEAR 9)"); + assertAST("oct.", "(MONTH_OF_YEAR 10)"); + assertAST("nov.", "(MONTH_OF_YEAR 11)"); + assertAST("dec.", "(MONTH_OF_YEAR 12)"); + } + + @Test + void day_of_week() throws Exception { + ruleName = "day_of_week"; + + assertAST("sunday", "(DAY_OF_WEEK 1)"); + assertAST("sundays", "(DAY_OF_WEEK 1)"); + assertAST("sun", "(DAY_OF_WEEK 1)"); + assertAST("sun.", "(DAY_OF_WEEK 1)"); + assertAST("monday", "(DAY_OF_WEEK 2)"); + assertAST("mondays", "(DAY_OF_WEEK 2)"); + assertAST("mon", "(DAY_OF_WEEK 2)"); + assertAST("mon.", "(DAY_OF_WEEK 2)"); + assertAST("tuesday", "(DAY_OF_WEEK 3)"); + assertAST("tuesdays", "(DAY_OF_WEEK 3)"); + assertAST("tues", "(DAY_OF_WEEK 3)"); + assertAST("tues.", "(DAY_OF_WEEK 3)"); + assertAST("tue", "(DAY_OF_WEEK 3)"); + assertAST("tue.", "(DAY_OF_WEEK 3)"); + assertAST("wednesday", "(DAY_OF_WEEK 4)"); + assertAST("wednesdays", "(DAY_OF_WEEK 4)"); + assertAST("wed", "(DAY_OF_WEEK 4)"); + assertAST("wed.", "(DAY_OF_WEEK 4)"); + assertAST("thursday", "(DAY_OF_WEEK 5)"); + assertAST("thursdays", "(DAY_OF_WEEK 5)"); + assertAST("thur", "(DAY_OF_WEEK 5)"); + assertAST("thur.", "(DAY_OF_WEEK 5)"); + assertAST("thu", "(DAY_OF_WEEK 5)"); + assertAST("thu.", "(DAY_OF_WEEK 5)"); + assertAST("friday", "(DAY_OF_WEEK 6)"); + assertAST("fridays", "(DAY_OF_WEEK 6)"); + assertAST("fri", "(DAY_OF_WEEK 6)"); + assertAST("fri.", "(DAY_OF_WEEK 6)"); + assertAST("saturday", "(DAY_OF_WEEK 7)"); + assertAST("saturdays", "(DAY_OF_WEEK 7)"); + assertAST("sat", "(DAY_OF_WEEK 7)"); + assertAST("sat.", "(DAY_OF_WEEK 7)"); + } + + @Test + void named_relative_date() throws Exception { + ruleName = "named_relative_date"; + + assertAST("today", "(RELATIVE_DATE (SEEK > by_day 0 day))"); + assertAST("now", "(RELATIVE_DATE (SEEK > by_day 0 day))"); + assertAST("tomorow", "(RELATIVE_DATE (SEEK > by_day 1 day))"); + assertAST("tomorrow", "(RELATIVE_DATE (SEEK > by_day 1 day))"); + assertAST("tommorow", "(RELATIVE_DATE (SEEK > by_day 1 day))"); + assertAST("tommorrow", "(RELATIVE_DATE (SEEK > by_day 1 day))"); + assertAST("yesterday", "(RELATIVE_DATE (SEEK < by_day 1 day))"); + } } diff --git a/src/test/java/org/natty/grammar/DateTimeGrammarTest.java b/src/test/java/org/natty/grammar/DateTimeGrammarTest.java index 734e1571..5a4f5c5e 100644 --- a/src/test/java/org/natty/grammar/DateTimeGrammarTest.java +++ b/src/test/java/org/natty/grammar/DateTimeGrammarTest.java @@ -1,86 +1,32 @@ package org.natty.grammar; -import org.junit.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvFileSource; -public class DateTimeGrammarTest extends AbstractGrammarTest { - - @Test - public void date_time_alternative() throws Exception { - _ruleName = "date_time_alternative"; - - assertAST("this wed. or next at 5pm", "(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 4))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm)))"); - assertAST("feb 28th or 2 days after", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 28))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 (EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 28))))))"); - assertAST("january fourth or the friday after", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 4))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 (DAY_OF_WEEK 6) (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 4))))))"); - assertAST("10/10/2008 or 10/12/2008", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 10) (YEAR_OF 2008))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 12) (YEAR_OF 2008))))"); - assertAST("next wed or thursday", "(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 5)))))"); - assertAST("next wed, thurs, fri", "(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 5)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 6)))))"); - assertAST("next wed, thurs, or fri at 6pm", "(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 5))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 6))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) pm)))"); - assertAST("10/10 or 12/30 or 10/15 at 5pm", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 10))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 30))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 15)) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm)))"); - assertAST("monday to friday", "(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 2)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 6)))))"); - assertAST("1999-12-31 to tomorrow", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 31) (YEAR_OF 1999))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 day))))"); - assertAST("now to 2010-01-01", "(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 day))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 01) (DAY_OF_MONTH 01) (YEAR_OF 2010))))"); - assertAST("2009-03-10 9:00 to 11:00", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 03) (DAY_OF_MONTH 10) (YEAR_OF 2009)) (EXPLICIT_TIME (HOURS_OF_DAY 9) (MINUTES_OF_HOUR 00))) (DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 11) (MINUTES_OF_HOUR 00))))"); - assertAST("26 oct 10:00 am to 11:00 am", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 26)) (EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 00) am)) (DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 11) (MINUTES_OF_HOUR 00) am)))"); - assertAST("jan 1 to 2", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 1))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 2))))"); - assertAST("16:00 nov 6 to 17:00", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 11) (DAY_OF_MONTH 6)) (EXPLICIT_TIME (HOURS_OF_DAY 16) (MINUTES_OF_HOUR 00))) (DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 17) (MINUTES_OF_HOUR 00))))"); - assertAST("may 2nd to 5th", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 2))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 5))))"); - assertAST("6am dec 5 to 7am", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 5)) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am)) (DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 7) (MINUTES_OF_HOUR 0) am)))"); - assertAST("1/3 to 2/3", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 3))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 3))))"); - assertAST("2/3 to in 1 week", "(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 3))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 week))))"); - assertAST("first day of may to last day of may", "(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 5)) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 5)) (EXPLICIT_SEEK (DAY_OF_MONTH 31)))))"); - } +class DateTimeGrammarTest extends AbstractGrammarTest { + + @ParameterizedTest(name = "{0}") + @CsvFileSource( + resources = "/test/datetime-alternative-test-data.csv", + delimiter = '|', + numLinesToSkip = 1, + useHeadersInDisplayName = false + ) + void date_time_alternative(String input, String expectedAst) throws Exception { + ruleName = "date_time_alternative"; + assertAST(input, expectedAst); + } + + @ParameterizedTest(name = "{0}") + @CsvFileSource( + resources = "/test/datetime-test-data.csv", + delimiter = '|', + numLinesToSkip = 1, + useHeadersInDisplayName = false + ) + void date_time(String input, String expectedAst) throws Exception { + ruleName = "date_time"; + assertAST(input, expectedAst); + } - - @Test - public void date_time() throws Exception { - _ruleName = "date_time"; - - assertAST("seven years ago at 3pm", "(DATE_TIME (RELATIVE_DATE (SEEK < by_day 7 year)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) pm))"); - assertAST("1st oct in the year '89 1300 hours", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00)))"); - assertAST("1st oct in the year '89 at 1300 hours", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00)))"); - assertAST("1st oct in the year '89, 13:00", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00)))"); - assertAST("1st oct in the year '89,13:00", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00)))"); - assertAST("1st oct in the year '89, at 13:00", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00)))"); - assertAST("3am on oct 1st 2010", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am))"); - assertAST("3am, october first 2010", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am))"); - assertAST("3am,october first 2010", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am))"); - assertAST("3am, on october first 2010", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am))"); - assertAST("3am october first 2010", "(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am))"); - assertAST("next wed. at 5pm", "(DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm))"); - assertAST("3 days after next wed", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 3 (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4))))))"); - assertAST("the sunday after next wed", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 (DAY_OF_WEEK 1) (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4))))))"); - assertAST("two days after today", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 day)))"); - assertAST("two days from today", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 day)))"); - assertAST("3 sundays after next wed", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 3 (DAY_OF_WEEK 1) (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4))))))"); - assertAST("the day after next", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 day)))"); - assertAST("the week after next", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 week)))"); - assertAST("the month after next", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 month)))"); - assertAST("the year after next", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 year)))"); - assertAST("wed of the week after next", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 week) (EXPLICIT_SEEK (DAY_OF_WEEK 4))))"); - assertAST("the 28th of the month after next", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 month) (EXPLICIT_SEEK (DAY_OF_MONTH 28))))"); - assertAST("6 in the morning", "(DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am))"); - assertAST("4 in the afternoon", "(DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 4) (MINUTES_OF_HOUR 0) pm))"); - assertAST("monday 6 in the morning", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 2))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am))"); - assertAST("monday 4 in the afternoon", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 2))) (EXPLICIT_TIME (HOURS_OF_DAY 4) (MINUTES_OF_HOUR 0) pm))"); - assertAST("monday 9 in the evening", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 2))) (EXPLICIT_TIME (HOURS_OF_DAY 9) (MINUTES_OF_HOUR 0) pm))"); - assertAST("this morning", "(DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 8) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am))"); - assertAST("this afternoon", "(DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm))"); - assertAST("final thursday in april", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 4)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 5))))"); - assertAST("final thurs in sep", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 5))))"); - assertAST("tomorrow @ noon", "(DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 day)) (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm))"); - assertAST("6 hours ago", "(DATE_TIME (RELATIVE_TIME (SEEK < by_day 6 hour)))"); - assertAST("10 hrs before noon", "(DATE_TIME (RELATIVE_TIME (SEEK < by_day (EXPLICIT_SEEK (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)) 10 hour)))"); - assertAST("10 hr before midnight", "(DATE_TIME (RELATIVE_TIME (SEEK < by_day (EXPLICIT_SEEK (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am)) 10 hour)))"); - assertAST("5 hours after noon", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day (EXPLICIT_SEEK (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)) 5 hour)))"); - assertAST("5 hours after midnight", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day (EXPLICIT_SEEK (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am)) 5 hour)))"); - assertAST("in 5 seconds", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day 5 second)))"); - assertAST("in 5 minutes", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day 5 minute)))"); - assertAST("in 5 hours", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day 5 hour)))"); - assertAST("4 secs from now", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 second)))"); - assertAST("4 sec from now", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 second)))"); - assertAST("4 minutes from now", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 minute)))"); - assertAST("4 mins from now", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 minute)))"); - assertAST("4 min from now", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 minute)))"); - assertAST("4 hours from now", "(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 hour)))"); - } } diff --git a/src/test/java/org/natty/grammar/HolidayGrammarTest.java b/src/test/java/org/natty/grammar/HolidayGrammarTest.java index 083456ad..15bfeb20 100644 --- a/src/test/java/org/natty/grammar/HolidayGrammarTest.java +++ b/src/test/java/org/natty/grammar/HolidayGrammarTest.java @@ -1,132 +1,31 @@ package org.natty.grammar; -import org.junit.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvFileSource; public class HolidayGrammarTest extends AbstractGrammarTest { - - @Test - public void names() throws Exception { - _ruleName = "holiday_name"; - - assertAST("april fool's day", "APRIL_FOOLS_DAY"); - assertAST("april fools day", "APRIL_FOOLS_DAY"); - assertAST("april fool day", "APRIL_FOOLS_DAY"); - - assertAST("black friday", "BLACK_FRIDAY"); - assertAST("black fri", "BLACK_FRIDAY"); - assertAST("black fri.", "BLACK_FRIDAY"); - - assertAST("christmas", "CHRISTMAS"); - assertAST("christmas day", "CHRISTMAS"); - - assertAST("christmas eve", "CHRISTMAS_EVE"); - assertAST("christmas eve.", "CHRISTMAS_EVE"); - assertAST("christmas evening", "CHRISTMAS_EVE"); - - assertAST("columbus day", "COLUMBUS_DAY"); - - assertAST("earth day", "EARTH_DAY"); - - assertAST("easter", "EASTER"); - assertAST("easter day", "EASTER"); - assertAST("easter sunday", "EASTER"); - - assertAST("father's day", "FATHERS_DAY"); - assertAST("fathers day", "FATHERS_DAY"); - - assertAST("flag day", "FLAG_DAY"); - - assertAST("good friday", "GOOD_FRIDAY"); - assertAST("good fri", "GOOD_FRIDAY"); - assertAST("good fri.", "GOOD_FRIDAY"); - - assertAST("groundhog day", "GROUNDHOG_DAY"); - assertAST("groundhogs day", "GROUNDHOG_DAY"); - assertAST("groundhog's day", "GROUNDHOG_DAY"); - - assertAST("halloween", "HALLOWEEN"); - assertAST("haloween", "HALLOWEEN"); - assertAST("halloween day", "HALLOWEEN"); - - assertAST("independence day", "INDEPENDENCE_DAY"); - - assertAST("kwanzaa", "KWANZAA"); - assertAST("kwanza", "KWANZAA"); - assertAST("kwanzaa day", "KWANZAA"); - - assertAST("labor day", "LABOR_DAY"); - - assertAST("martin luther king day", "MLK_DAY"); - assertAST("martin luther king jr.'s day", "MLK_DAY"); - assertAST("martin luther king jr. day", "MLK_DAY"); - assertAST("martin luther king jr day", "MLK_DAY"); - assertAST("mlk day", "MLK_DAY"); - - assertAST("memorial day", "MEMORIAL_DAY"); - - assertAST("memorial day", "MEMORIAL_DAY"); - - assertAST("mothers day", "MOTHERS_DAY"); - assertAST("mother's day", "MOTHERS_DAY"); - - assertAST("new year's day", "NEW_YEARS_DAY"); - assertAST("new years day", "NEW_YEARS_DAY"); - assertAST("new years", "NEW_YEARS_DAY"); - - assertAST("new year's eve", "NEW_YEARS_EVE"); - assertAST("new years eve", "NEW_YEARS_EVE"); - assertAST("new years eve.", "NEW_YEARS_EVE"); - - assertAST("patriot day", "PATRIOT_DAY"); - - assertAST("president's day", "PRESIDENTS_DAY"); - assertAST("presidents day", "PRESIDENTS_DAY"); - assertAST("president day", "PRESIDENTS_DAY"); - - assertAST("st. patricks day", "ST_PATRICKS_DAY"); - assertAST("st patrick's day", "ST_PATRICKS_DAY"); - assertAST("saint patrick's day", "ST_PATRICKS_DAY"); - assertAST("saint paddy's day", "ST_PATRICKS_DAY"); - assertAST("saint paddys day", "ST_PATRICKS_DAY"); - - assertAST("tax day", "TAX_DAY"); - - assertAST("thanksgiving", "THANKSGIVING"); - assertAST("thanksgiving day", "THANKSGIVING"); - - assertAST("election day", "ELECTION_DAY"); - - assertAST("valentine's day", "VALENTINES_DAY"); - assertAST("valentines day", "VALENTINES_DAY"); - assertAST("valentine day", "VALENTINES_DAY"); - - assertAST("veterans day", "VETERANS_DAY"); - assertAST("veteran's day", "VETERANS_DAY"); - assertAST("veteran day", "VETERANS_DAY"); - } - - @Test - public void statments() throws Exception { - _ruleName = "holiday"; - - assertAST("april fool's day", "(SEEK > by_day 1 APRIL_FOOLS_DAY)"); - - assertAST("next christmas", "(SEEK > by_week 1 CHRISTMAS)"); - assertAST("coming christmas", "(SEEK > by_day 1 CHRISTMAS)"); - assertAST("upcoming christmas", "(SEEK > by_day 1 CHRISTMAS)"); - - assertAST("last halloween", "(SEEK < by_week 1 HALLOWEEN)"); - assertAST("past halloween", "(SEEK < by_day 1 HALLOWEEN)"); - - assertAST("in three christmases", "(SEEK > by_day 3 CHRISTMAS)"); - - assertAST("three christmases from now", "(SEEK > by_day 3 CHRISTMAS)"); - assertAST("3 christmases ago", "(SEEK < by_day 3 CHRISTMAS)"); - assertAST("2 april fool's days ago", "(SEEK < by_day 2 APRIL_FOOLS_DAY)"); - - assertAST("in 10 thanksgivings", "(SEEK > by_day 10 THANKSGIVING)"); - - assertAST("thanksgiving 2011", "(EXPLICIT_SEEK THANKSGIVING (YEAR_OF 2011))"); - assertAST("christmas, '95", "(EXPLICIT_SEEK CHRISTMAS (YEAR_OF 95))"); - } + + @ParameterizedTest(name = "{0}") + @CsvFileSource( + resources = "/test/holidays-test-data.csv", + delimiter = '|', + numLinesToSkip = 1, + useHeadersInDisplayName = false + ) + void names(String input, String expectedAst) throws Exception { + ruleName = "holiday_name"; + assertAST(input, expectedAst); + } + + @ParameterizedTest(name = "{0}") + @CsvFileSource( + resources = "/test/holiday-statement-test-data.csv", + delimiter = '|', + numLinesToSkip = 1, + useHeadersInDisplayName = false + ) + void statments(String input, String expectedAst) throws Exception { + ruleName = "holiday"; + assertAST(input, expectedAst); + } } diff --git a/src/test/java/org/natty/grammar/NumericGrammarTest.java b/src/test/java/org/natty/grammar/NumericGrammarTest.java index c81200bc..3375cb0e 100644 --- a/src/test/java/org/natty/grammar/NumericGrammarTest.java +++ b/src/test/java/org/natty/grammar/NumericGrammarTest.java @@ -1,103 +1,26 @@ package org.natty.grammar; -import org.junit.Test; -public class NumericGrammarTest extends AbstractGrammarTest { - - @Test - public void int_00_to_23_optional_prefix() throws Exception { - _ruleName = "int_00_to_23_optional_prefix"; - - assertAST("00", "00"); - assertAST("01", "01"); - assertAST("02", "02"); - assertAST("03", "03"); - assertAST("04", "04"); - assertAST("05", "05"); - assertAST("06", "06"); - assertAST("07", "07"); - assertAST("08", "08"); - assertAST("09", "09"); - assertAST("10", "10"); - assertAST("11", "11"); - assertAST("12", "12"); - assertAST("13", "13"); - assertAST("14", "14"); - assertAST("15", "15"); - assertAST("16", "16"); - assertAST("17", "17"); - assertAST("18", "18"); - assertAST("19", "19"); - assertAST("20", "20"); - assertAST("21", "21"); - assertAST("22", "22"); - assertAST("23", "23"); - } - - @Test - public void test_int_00_to_59_mandatory_prefix() throws Exception { - _ruleName = "int_00_to_59_mandatory_prefix"; - - assertAST("00", "00"); - assertAST("01", "01"); - assertAST("02", "02"); - assertAST("03", "03"); - assertAST("04", "04"); - assertAST("05", "05"); - assertAST("06", "06"); - assertAST("07", "07"); - assertAST("08", "08"); - assertAST("09", "09"); - assertAST("10", "10"); - assertAST("11", "11"); - assertAST("12", "12"); - assertAST("13", "13"); - assertAST("14", "14"); - assertAST("15", "15"); - assertAST("16", "16"); - assertAST("17", "17"); - assertAST("18", "18"); - assertAST("19", "19"); - assertAST("20", "20"); - assertAST("21", "21"); - assertAST("22", "22"); - assertAST("23", "23"); - assertAST("24", "24"); - assertAST("25", "25"); - assertAST("26", "26"); - assertAST("27", "27"); - assertAST("28", "28"); - assertAST("29", "29"); - assertAST("30", "30"); - assertAST("31", "31"); - assertAST("32", "32"); - assertAST("33", "33"); - assertAST("34", "34"); - assertAST("35", "35"); - assertAST("36", "36"); - assertAST("37", "37"); - assertAST("38", "38"); - assertAST("39", "39"); - assertAST("40", "40"); - assertAST("41", "41"); - assertAST("42", "42"); - assertAST("43", "43"); - assertAST("44", "44"); - assertAST("45", "45"); - assertAST("46", "46"); - assertAST("47", "47"); - assertAST("48", "48"); - assertAST("49", "49"); - assertAST("50", "50"); - assertAST("51", "51"); - assertAST("52", "52"); - assertAST("53", "53"); - assertAST("54", "54"); - assertAST("55", "55"); - assertAST("56", "56"); - assertAST("57", "57"); - assertAST("58", "58"); - assertAST("59", "59"); +import org.junit.jupiter.api.Test; + +class NumericGrammarTest extends AbstractGrammarTest { + + @Test + void int_00_to_23_optional_prefix() throws Exception { + ruleName = "int_00_to_23_optional_prefix"; + for (int i = 0; i <= 23; i++) { + String value = String.format("%02d", i); + assertAST(value, value); + } + } + + @Test + void test_int_00_to_59_mandatory_prefix() throws Exception { + ruleName = "int_00_to_59_mandatory_prefix"; + for (int i = 0; i <= 59; i++) { + String value = String.format("%02d", i); + assertAST(value, value); + } /* "0" FAIL "1" FAIL @@ -111,112 +34,15 @@ public void test_int_00_to_59_mandatory_prefix() throws Exception { "9" FAIL "60" FAIL */ - } - - @Test - public void test_int_00_to_99_mandatory_prefix() throws Exception { - _ruleName = "int_00_to_99_mandatory_prefix"; - - assertAST("00", "00"); - assertAST("01", "01"); - assertAST("02", "02"); - assertAST("03", "03"); - assertAST("04", "04"); - assertAST("05", "05"); - assertAST("06", "06"); - assertAST("07", "07"); - assertAST("08", "08"); - assertAST("09", "09"); - assertAST("10", "10"); - assertAST("11", "11"); - assertAST("12", "12"); - assertAST("13", "13"); - assertAST("14", "14"); - assertAST("15", "15"); - assertAST("16", "16"); - assertAST("17", "17"); - assertAST("18", "18"); - assertAST("19", "19"); - assertAST("20", "20"); - assertAST("21", "21"); - assertAST("22", "22"); - assertAST("23", "23"); - assertAST("24", "24"); - assertAST("25", "25"); - assertAST("26", "26"); - assertAST("27", "27"); - assertAST("28", "28"); - assertAST("29", "29"); - assertAST("30", "30"); - assertAST("31", "31"); - assertAST("32", "32"); - assertAST("33", "33"); - assertAST("34", "34"); - assertAST("35", "35"); - assertAST("36", "36"); - assertAST("37", "37"); - assertAST("38", "38"); - assertAST("39", "39"); - assertAST("40", "40"); - assertAST("41", "41"); - assertAST("42", "42"); - assertAST("43", "43"); - assertAST("44", "44"); - assertAST("45", "45"); - assertAST("46", "46"); - assertAST("47", "47"); - assertAST("48", "48"); - assertAST("49", "49"); - assertAST("50", "50"); - assertAST("51", "51"); - assertAST("52", "52"); - assertAST("53", "53"); - assertAST("54", "54"); - assertAST("55", "55"); - assertAST("56", "56"); - assertAST("57", "57"); - assertAST("58", "58"); - assertAST("59", "59"); - assertAST("60", "60"); - assertAST("61", "61"); - assertAST("62", "62"); - assertAST("63", "63"); - assertAST("64", "64"); - assertAST("65", "65"); - assertAST("66", "66"); - assertAST("67", "67"); - assertAST("68", "68"); - assertAST("69", "69"); - assertAST("70", "70"); - assertAST("71", "71"); - assertAST("72", "72"); - assertAST("73", "73"); - assertAST("74", "74"); - assertAST("75", "75"); - assertAST("76", "76"); - assertAST("77", "77"); - assertAST("78", "78"); - assertAST("79", "79"); - assertAST("80", "80"); - assertAST("81", "81"); - assertAST("82", "82"); - assertAST("83", "83"); - assertAST("84", "84"); - assertAST("85", "85"); - assertAST("86", "86"); - assertAST("87", "87"); - assertAST("88", "88"); - assertAST("89", "89"); - assertAST("90", "90"); - assertAST("91", "91"); - assertAST("92", "92"); - assertAST("93", "93"); - assertAST("94", "94"); - assertAST("95", "95"); - assertAST("96", "96"); - assertAST("97", "97"); - assertAST("98", "98"); - assertAST("99", "99"); + } + + @Test + void test_int_00_to_99_mandatory_prefix() throws Exception { + ruleName = "int_00_to_99_mandatory_prefix"; + for (int i = 0; i <= 99; i++) { + String value = String.format("%02d", i); + assertAST(value, value); + } /* "0" FAIL "1" FAIL @@ -230,21 +56,15 @@ public void test_int_00_to_99_mandatory_prefix() throws Exception { "9" FAIL "100" FAIL */ - } - - @Test - public void int_1_to_9() throws Exception { - _ruleName = "int_1_to_9"; - - assertAST("1", "1"); - assertAST("2", "2"); - assertAST("3", "3"); - assertAST("4", "4"); - assertAST("5", "5"); - assertAST("6", "6"); - assertAST("7", "7"); - assertAST("8", "8"); - assertAST("9", "9"); + } + + @Test + void int_1_to_9() throws Exception { + ruleName = "int_1_to_9"; + for (int i = 1; i <= 9; i++) { + String value = String.format("%d", i); + assertAST(value, value); + } /* FAIL: 0 @@ -259,24 +79,15 @@ public void int_1_to_9() throws Exception { 08 09 */ - } - - @Test - public void int_01_to_12() throws Exception { - _ruleName = "int_01_to_12"; - - assertAST("01", "01"); - assertAST("02", "02"); - assertAST("03", "03"); - assertAST("04", "04"); - assertAST("05", "05"); - assertAST("06", "06"); - assertAST("07", "07"); - assertAST("08", "08"); - assertAST("09", "09"); - assertAST("10", "10"); - assertAST("11", "11"); - assertAST("12", "12"); + } + + @Test + void int_01_to_12() throws Exception { + ruleName = "int_01_to_12"; + for (int i = 1; i < 13; i++) { + String value = String.format("%02d", i); + assertAST(value, value); + } /* FAIL: 0 @@ -291,435 +102,311 @@ public void int_01_to_12() throws Exception { 8 9 */ - } - - - @Test - public void int_13_to_23() throws Exception { - _ruleName = "int_13_to_23"; - - assertAST("13", "13"); - assertAST("14", "14"); - assertAST("15", "15"); - assertAST("16", "16"); - assertAST("17", "17"); - assertAST("18", "18"); - assertAST("19", "19"); - assertAST("20", "20"); - assertAST("21", "21"); - assertAST("22", "22"); - assertAST("23", "23"); - } - - @Test - public void int_24_to_31() throws Exception { - _ruleName = "int_24_to_31"; - - assertAST("24", "24"); - assertAST("25", "25"); - assertAST("26", "26"); - assertAST("27", "27"); - assertAST("28", "28"); - assertAST("29", "29"); - assertAST("30", "30"); - assertAST("31", "31"); - } - - @Test - public void int_32_to_59() throws Exception { - _ruleName = "int_32_to_59"; - - assertAST("32", "32"); - assertAST("33", "33"); - assertAST("34", "34"); - assertAST("35", "35"); - assertAST("36", "36"); - assertAST("37", "37"); - assertAST("38", "38"); - assertAST("39", "39"); - assertAST("40", "40"); - assertAST("41", "41"); - assertAST("42", "42"); - assertAST("43", "43"); - assertAST("44", "44"); - assertAST("45", "45"); - assertAST("46", "46"); - assertAST("47", "47"); - assertAST("48", "48"); - assertAST("49", "49"); - assertAST("50", "50"); - assertAST("51", "51"); - assertAST("52", "52"); - assertAST("53", "53"); - assertAST("54", "54"); - assertAST("55", "55"); - assertAST("56", "56"); - assertAST("57", "57"); - assertAST("58", "58"); - assertAST("59", "59"); - } - - @Test - public void int_60_to_99() throws Exception { - _ruleName = "int_60_to_99"; - - assertAST("60", "60"); - assertAST("61", "61"); - assertAST("62", "62"); - assertAST("63", "63"); - assertAST("64", "64"); - assertAST("65", "65"); - assertAST("66", "66"); - assertAST("67", "67"); - assertAST("68", "68"); - assertAST("69", "69"); - assertAST("70", "70"); - assertAST("71", "71"); - assertAST("72", "72"); - assertAST("73", "73"); - assertAST("74", "74"); - assertAST("75", "75"); - assertAST("76", "76"); - assertAST("77", "77"); - assertAST("78", "78"); - assertAST("79", "79"); - assertAST("80", "80"); - assertAST("81", "81"); - assertAST("82", "82"); - assertAST("83", "83"); - assertAST("84", "84"); - assertAST("85", "85"); - assertAST("86", "86"); - assertAST("87", "87"); - assertAST("88", "88"); - assertAST("89", "89"); - assertAST("90", "90"); - assertAST("91", "91"); - assertAST("92", "92"); - assertAST("93", "93"); - assertAST("94", "94"); - assertAST("95", "95"); - assertAST("96", "96"); - assertAST("97", "97"); - assertAST("98", "98"); - assertAST("99", "99"); - } - - @Test - public void int_01_to_12_optional_prefix() throws Exception { - _ruleName = "int_01_to_12_optional_prefix"; - - assertAST("01", "01"); - assertAST("1", "1"); - assertAST("02", "02"); - assertAST("2", "2"); - assertAST("03", "03"); - assertAST("3", "3"); - assertAST("04", "04"); - assertAST("4", "4"); - assertAST("05", "05"); - assertAST("5", "5"); - assertAST("06", "06"); - assertAST("6", "6"); - assertAST("07", "07"); - assertAST("7", "7"); - assertAST("08", "08"); - assertAST("8", "8"); - assertAST("09", "09"); - assertAST("9", "9"); - assertAST("10", "10"); - assertAST("11", "11"); - assertAST("12", "12"); - } - - @Test - public void int_01_to_31_optional_prefix() throws Exception { - _ruleName = "int_01_to_31_optional_prefix"; - - assertAST("01", "01"); - assertAST("1", "1"); - assertAST("02", "02"); - assertAST("2", "2"); - assertAST("03", "03"); - assertAST("3", "3"); - assertAST("04", "04"); - assertAST("4", "4"); - assertAST("05", "05"); - assertAST("5", "5"); - assertAST("06", "06"); - assertAST("6", "6"); - assertAST("07", "07"); - assertAST("7", "7"); - assertAST("08", "08"); - assertAST("8", "8"); - assertAST("09", "09"); - assertAST("9", "9"); - assertAST("10", "10"); - assertAST("11", "11"); - assertAST("12", "12"); - assertAST("13", "13"); - assertAST("14", "14"); - assertAST("15", "15"); - assertAST("16", "16"); - assertAST("17", "17"); - assertAST("18", "18"); - assertAST("19", "19"); - assertAST("20", "20"); - assertAST("21", "21"); - assertAST("22", "22"); - assertAST("23", "23"); - assertAST("24", "24"); - assertAST("25", "25"); - assertAST("26", "26"); - assertAST("27", "27"); - assertAST("28", "28"); - assertAST("29", "29"); - assertAST("30", "30"); - assertAST("31", "31"); - } - - @Test - public void int_four_digits() throws Exception { - _ruleName = "int_four_digits"; - - assertAST("0000", "0000"); - assertAST("0100", "0100"); - assertAST("0020", "0020"); - assertAST("0003", "0003"); - assertAST("9999", "9999"); - assertAST("5050", "5050"); - //"000" FAIL - //"33" FAIL - //"2" FAIL - } - - @Test - public void spelled_or_int_01_to_31_optional_prefix() throws Exception { - _ruleName = "spelled_or_int_01_to_31_optional_prefix"; - - assertAST("one", "1"); - assertAST("two", "2"); - assertAST("three", "3"); - assertAST("four", "4"); - assertAST("five", "5"); - assertAST("six", "6"); - assertAST("seven", "7"); - assertAST("eight", "8"); - assertAST("nine", "9"); - assertAST("ten", "10"); - assertAST("eleven", "11"); - assertAST("twelve", "12"); - assertAST("thirteen", "13"); - assertAST("fourteen", "14"); - assertAST("fifteen", "15"); - assertAST("sixteen", "16"); - assertAST("seventeen", "17"); - assertAST("eighteen", "18"); - assertAST("nineteen", "19"); - assertAST("twenty", "20"); - assertAST("twenty one", "21"); - assertAST("twenty-one", "21"); - assertAST("twenty two", "22"); - assertAST("twenty-two", "22"); - assertAST("twenty three", "23"); - assertAST("twenty-three", "23"); - assertAST("twenty four", "24"); - assertAST("twenty-four", "24"); - assertAST("twenty five", "25"); - assertAST("twenty-five", "25"); - assertAST("twenty six", "26"); - assertAST("twenty-six", "26"); - assertAST("twenty seven", "27"); - assertAST("twenty-seven", "27"); - assertAST("twenty-eight", "28"); - assertAST("twenty nine", "29"); - assertAST("twenty-nine", "29"); - assertAST("thirty", "30"); - assertAST("thirty one", "31"); - assertAST("thirty-one", "31"); - assertAST("01", "01"); - assertAST("1", "1"); - assertAST("02", "02"); - assertAST("2", "2"); - assertAST("03", "03"); - assertAST("3", "3"); - assertAST("04", "04"); - assertAST("4", "4"); - assertAST("05", "05"); - assertAST("5", "5"); - assertAST("06", "06"); - assertAST("6", "6"); - assertAST("07", "07"); - assertAST("7", "7"); - assertAST("08", "08"); - assertAST("8", "8"); - assertAST("09", "09"); - assertAST("9", "9"); - assertAST("10", "10"); - assertAST("11", "11"); - assertAST("12", "12"); - assertAST("13", "13"); - assertAST("14", "14"); - assertAST("15", "15"); - assertAST("16", "16"); - assertAST("17", "17"); - assertAST("18", "18"); - assertAST("19", "19"); - assertAST("20", "20"); - assertAST("21", "21"); - assertAST("22", "22"); - assertAST("23", "23"); - assertAST("24", "24"); - assertAST("25", "25"); - assertAST("26", "26"); - assertAST("27", "27"); - assertAST("28", "28"); - assertAST("29", "29"); - assertAST("30", "30"); - assertAST("31", "31"); - //assertAST("zero", FAIL - } - - @Test - public void spelled_or_int_optional_prefix() throws Exception { - _ruleName = "spelled_or_int_optional_prefix"; - - assertAST("1", "1"); - assertAST("01", "01"); - assertAST("60", "60"); - assertAST("99", "99"); - assertAST("one", "1"); - assertAST("two", "2"); - //"00" FAIL - //"0" FAIL - //"zero" FAIL - } - - @Test - public void spelled_one_to_thirty_one() throws Exception { - _ruleName = "spelled_one_to_thirty_one"; - - assertAST("one", "1"); - assertAST("two", "2"); - assertAST("three", "3"); - assertAST("four", "4"); - assertAST("five", "5"); - assertAST("six", "6"); - assertAST("seven", "7"); - assertAST("eight", "8"); - assertAST("nine", "9"); - assertAST("ten", "10"); - assertAST("eleven", "11"); - assertAST("twelve", "12"); - assertAST("thirteen", "13"); - assertAST("fourteen", "14"); - assertAST("fifteen", "15"); - assertAST("sixteen", "16"); - assertAST("seventeen", "17"); - assertAST("eighteen", "18"); - assertAST("nineteen", "19"); - assertAST("twenty", "20"); - assertAST("twenty one", "21"); - assertAST("twenty-one", "21"); - assertAST("twenty two", "22"); - assertAST("twenty-two", "22"); - assertAST("twenty three", "23"); - assertAST("twenty-three", "23"); - assertAST("twenty four", "24"); - assertAST("twenty-four", "24"); - assertAST("twenty five", "25"); - assertAST("twenty-five", "25"); - assertAST("twenty six", "26"); - assertAST("twenty-six", "26"); - assertAST("twenty seven", "27"); - assertAST("twenty-seven", "27"); - assertAST("twenty-eight", "28"); - assertAST("twenty nine", "29"); - assertAST("twenty-nine", "29"); - assertAST("thirty", "30"); - assertAST("thirty one", "31"); - assertAST("thirty-one", "31"); - - //"zero" FAIL - //"thirty two" FAIL - //"thirty-two" FAIL - } - - @Test - public void spelled_first_to_thirty_first() throws Exception { - _ruleName = "spelled_first_to_thirty_first"; - - assertAST("first", "1"); - assertAST("1st", "1"); - assertAST("second", "2"); - assertAST("2nd", "2"); - assertAST("third", "3"); - assertAST("3rd", "3"); - assertAST("fourth", "4"); - assertAST("4th", "4"); - assertAST("fifth", "5"); - assertAST("5th", "5"); - assertAST("sixth", "6"); - assertAST("6th", "6"); - assertAST("seventh", "7"); - assertAST("7th", "7"); - assertAST("eighth", "8"); - assertAST("8th", "8"); - assertAST("ninth", "9"); - assertAST("9th", "9"); - assertAST("tenth", "10"); - assertAST("10th", "10"); - assertAST("eleventh", "11"); - assertAST("11th", "11"); - assertAST("twelfth", "12"); - assertAST("12th", "12"); - assertAST("thirteenth", "13"); - assertAST("13th", "13"); - assertAST("fourteenth", "14"); - assertAST("14th", "14"); - assertAST("fifteenth", "15"); - assertAST("15th", "15"); - assertAST("sixteenth", "16"); - assertAST("16th", "16"); - assertAST("seventeenth", "17"); - assertAST("17th", "17"); - assertAST("eighteenth", "18"); - assertAST("18th", "18"); - assertAST("nineteenth", "19"); - assertAST("19th", "19"); - assertAST("twentieth", "20"); - assertAST("20th", "20"); - assertAST("twenty-first", "21"); - assertAST("twenty first", "21"); - assertAST("21st", "21"); - assertAST("twenty-second", "22"); - assertAST("twenty second", "22"); - assertAST("22nd", "22"); - assertAST("twenty-third", "23"); - assertAST("twenty third", "23"); - assertAST("23rd", "23"); - assertAST("twenty-fourth", "24"); - assertAST("twenty fourth", "24"); - assertAST("24th", "24"); - assertAST("twenty-fifth", "25"); - assertAST("twenty fifth", "25"); - assertAST("25th", "25"); - assertAST("twenty-sixth", "26"); - assertAST("twenty sixth", "26"); - assertAST("26th", "26"); - assertAST("twenty-seventh", "27"); - assertAST("twenty seventh", "27"); - assertAST("27th", "27"); - assertAST("twenty-eighth", "28"); - assertAST("twenty eighth", "28"); - assertAST("28th", "28"); - assertAST("twenty-ninth", "29"); - assertAST("twenty ninth", "29"); - assertAST("29th", "29"); - assertAST("thirtieth", "30"); - assertAST("30th", "30"); - assertAST("thirty-first", "31"); - assertAST("thirty first", "31"); - assertAST("31st", "31"); - } + } + + + @Test + void int_13_to_23() throws Exception { + ruleName = "int_13_to_23"; + for (int i = 13; i <= 23; i++) { + String value = String.format("%02d", i); + assertAST(value, value); + } + } + + @Test + void int_24_to_31() throws Exception { + ruleName = "int_24_to_31"; + for (int i = 24; i <= 31; i++) { + String value = String.format("%02d", i); + assertAST(value, value); + } + } + + @Test + void int_32_to_59() throws Exception { + ruleName = "int_32_to_59"; + for (int i = 32; i <= 59; i++) { + String value = String.format("%02d", i); + assertAST(value, value); + } + } + + @Test + void int_60_to_99() throws Exception { + ruleName = "int_60_to_99"; + for (int i = 60; i <= 99; i++) { + String value = String.format("%02d", i); + assertAST(value, value); + } + } + + @Test + void int_01_to_12_optional_prefix() throws Exception { + ruleName = "int_01_to_12_optional_prefix"; + for (int i = 1; i <= 12; i++) { + String value = String.format("%d", i); + assertAST(value, value); + + String valueWithPrefix = String.format("%02d", i); + assertAST(valueWithPrefix, valueWithPrefix); + } + } + + @Test + void int_01_to_31_optional_prefix() throws Exception { + ruleName = "int_01_to_31_optional_prefix"; + for (int i = 1; i <= 31; i++) { + String value = String.format("%d", i); + assertAST(value, value); + + String valueWithPrefix = String.format("%02d", i); + assertAST(valueWithPrefix, valueWithPrefix); + } + } + + @Test + void int_four_digits() throws Exception { + ruleName = "int_four_digits"; + + assertAST("0000", "0000"); + assertAST("0100", "0100"); + assertAST("0020", "0020"); + assertAST("0003", "0003"); + assertAST("9999", "9999"); + assertAST("5050", "5050"); + //"000" FAIL + //"33" FAIL + //"2" FAIL + } + + @Test + void spelled_or_int_01_to_31_optional_prefix() throws Exception { + ruleName = "spelled_or_int_01_to_31_optional_prefix"; + + assertAST("one", "1"); + assertAST("two", "2"); + assertAST("three", "3"); + assertAST("four", "4"); + assertAST("five", "5"); + assertAST("six", "6"); + assertAST("seven", "7"); + assertAST("eight", "8"); + assertAST("nine", "9"); + assertAST("ten", "10"); + assertAST("eleven", "11"); + assertAST("twelve", "12"); + assertAST("thirteen", "13"); + assertAST("fourteen", "14"); + assertAST("fifteen", "15"); + assertAST("sixteen", "16"); + assertAST("seventeen", "17"); + assertAST("eighteen", "18"); + assertAST("nineteen", "19"); + assertAST("twenty", "20"); + assertAST("twenty one", "21"); + assertAST("twenty-one", "21"); + assertAST("twenty two", "22"); + assertAST("twenty-two", "22"); + assertAST("twenty three", "23"); + assertAST("twenty-three", "23"); + assertAST("twenty four", "24"); + assertAST("twenty-four", "24"); + assertAST("twenty five", "25"); + assertAST("twenty-five", "25"); + assertAST("twenty six", "26"); + assertAST("twenty-six", "26"); + assertAST("twenty seven", "27"); + assertAST("twenty-seven", "27"); + assertAST("twenty-eight", "28"); + assertAST("twenty nine", "29"); + assertAST("twenty-nine", "29"); + assertAST("thirty", "30"); + assertAST("thirty one", "31"); + assertAST("thirty-one", "31"); + assertAST("01", "01"); + assertAST("1", "1"); + assertAST("02", "02"); + assertAST("2", "2"); + assertAST("03", "03"); + assertAST("3", "3"); + assertAST("04", "04"); + assertAST("4", "4"); + assertAST("05", "05"); + assertAST("5", "5"); + assertAST("06", "06"); + assertAST("6", "6"); + assertAST("07", "07"); + assertAST("7", "7"); + assertAST("08", "08"); + assertAST("8", "8"); + assertAST("09", "09"); + assertAST("9", "9"); + assertAST("10", "10"); + assertAST("11", "11"); + assertAST("12", "12"); + assertAST("13", "13"); + assertAST("14", "14"); + assertAST("15", "15"); + assertAST("16", "16"); + assertAST("17", "17"); + assertAST("18", "18"); + assertAST("19", "19"); + assertAST("20", "20"); + assertAST("21", "21"); + assertAST("22", "22"); + assertAST("23", "23"); + assertAST("24", "24"); + assertAST("25", "25"); + assertAST("26", "26"); + assertAST("27", "27"); + assertAST("28", "28"); + assertAST("29", "29"); + assertAST("30", "30"); + assertAST("31", "31"); + //assertAST("zero", FAIL + } + + @Test + void spelled_or_int_optional_prefix() throws Exception { + ruleName = "spelled_or_int_optional_prefix"; + + assertAST("1", "1"); + assertAST("01", "01"); + assertAST("60", "60"); + assertAST("99", "99"); + assertAST("one", "1"); + assertAST("two", "2"); + //"00" FAIL + //"0" FAIL + //"zero" FAIL + } + + @Test + void spelled_one_to_thirty_one() throws Exception { + ruleName = "spelled_one_to_thirty_one"; + + assertAST("one", "1"); + assertAST("two", "2"); + assertAST("three", "3"); + assertAST("four", "4"); + assertAST("five", "5"); + assertAST("six", "6"); + assertAST("seven", "7"); + assertAST("eight", "8"); + assertAST("nine", "9"); + assertAST("ten", "10"); + assertAST("eleven", "11"); + assertAST("twelve", "12"); + assertAST("thirteen", "13"); + assertAST("fourteen", "14"); + assertAST("fifteen", "15"); + assertAST("sixteen", "16"); + assertAST("seventeen", "17"); + assertAST("eighteen", "18"); + assertAST("nineteen", "19"); + assertAST("twenty", "20"); + assertAST("twenty one", "21"); + assertAST("twenty-one", "21"); + assertAST("twenty two", "22"); + assertAST("twenty-two", "22"); + assertAST("twenty three", "23"); + assertAST("twenty-three", "23"); + assertAST("twenty four", "24"); + assertAST("twenty-four", "24"); + assertAST("twenty five", "25"); + assertAST("twenty-five", "25"); + assertAST("twenty six", "26"); + assertAST("twenty-six", "26"); + assertAST("twenty seven", "27"); + assertAST("twenty-seven", "27"); + assertAST("twenty-eight", "28"); + assertAST("twenty nine", "29"); + assertAST("twenty-nine", "29"); + assertAST("thirty", "30"); + assertAST("thirty one", "31"); + assertAST("thirty-one", "31"); + + //"zero" FAIL + //"thirty two" FAIL + //"thirty-two" FAIL + } + + @Test + void spelled_first_to_thirty_first() throws Exception { + ruleName = "spelled_first_to_thirty_first"; + + assertAST("first", "1"); + assertAST("1st", "1"); + assertAST("second", "2"); + assertAST("2nd", "2"); + assertAST("third", "3"); + assertAST("3rd", "3"); + assertAST("fourth", "4"); + assertAST("4th", "4"); + assertAST("fifth", "5"); + assertAST("5th", "5"); + assertAST("sixth", "6"); + assertAST("6th", "6"); + assertAST("seventh", "7"); + assertAST("7th", "7"); + assertAST("eighth", "8"); + assertAST("8th", "8"); + assertAST("ninth", "9"); + assertAST("9th", "9"); + assertAST("tenth", "10"); + assertAST("10th", "10"); + assertAST("eleventh", "11"); + assertAST("11th", "11"); + assertAST("twelfth", "12"); + assertAST("12th", "12"); + assertAST("thirteenth", "13"); + assertAST("13th", "13"); + assertAST("fourteenth", "14"); + assertAST("14th", "14"); + assertAST("fifteenth", "15"); + assertAST("15th", "15"); + assertAST("sixteenth", "16"); + assertAST("16th", "16"); + assertAST("seventeenth", "17"); + assertAST("17th", "17"); + assertAST("eighteenth", "18"); + assertAST("18th", "18"); + assertAST("nineteenth", "19"); + assertAST("19th", "19"); + assertAST("twentieth", "20"); + assertAST("20th", "20"); + assertAST("twenty-first", "21"); + assertAST("twenty first", "21"); + assertAST("21st", "21"); + assertAST("twenty-second", "22"); + assertAST("twenty second", "22"); + assertAST("22nd", "22"); + assertAST("twenty-third", "23"); + assertAST("twenty third", "23"); + assertAST("23rd", "23"); + assertAST("twenty-fourth", "24"); + assertAST("twenty fourth", "24"); + assertAST("24th", "24"); + assertAST("twenty-fifth", "25"); + assertAST("twenty fifth", "25"); + assertAST("25th", "25"); + assertAST("twenty-sixth", "26"); + assertAST("twenty sixth", "26"); + assertAST("26th", "26"); + assertAST("twenty-seventh", "27"); + assertAST("twenty seventh", "27"); + assertAST("27th", "27"); + assertAST("twenty-eighth", "28"); + assertAST("twenty eighth", "28"); + assertAST("28th", "28"); + assertAST("twenty-ninth", "29"); + assertAST("twenty ninth", "29"); + assertAST("29th", "29"); + assertAST("thirtieth", "30"); + assertAST("30th", "30"); + assertAST("thirty-first", "31"); + assertAST("thirty first", "31"); + assertAST("31st", "31"); + } } diff --git a/src/test/java/org/natty/grammar/TimeGrammarTest.java b/src/test/java/org/natty/grammar/TimeGrammarTest.java index 12fb8545..81e393a0 100644 --- a/src/test/java/org/natty/grammar/TimeGrammarTest.java +++ b/src/test/java/org/natty/grammar/TimeGrammarTest.java @@ -1,189 +1,114 @@ package org.natty.grammar; -import org.junit.Test; -public class TimeGrammarTest extends AbstractGrammarTest { - - @Test - public void time_zone_abbreviation() throws Exception { - _ruleName = "time_zone_abbreviation"; - - assertAST("est", "America/New_York"); - assertAST("edt", "America/New_York"); - assertAST("et", "America/New_York"); - assertAST("pst", "America/Los_Angeles"); - assertAST("pdt", "America/Los_Angeles"); - assertAST("pt", "America/Los_Angeles"); - assertAST("cst", "America/Chicago"); - assertAST("cdt", "America/Chicago"); - assertAST("ct", "America/Chicago"); - assertAST("mst", "America/Denver"); - assertAST("mdt", "America/Denver"); - assertAST("mt", "America/Denver"); - assertAST("akst", "America/Anchorage"); - assertAST("akdt", "America/Anchorage"); - assertAST("akt", "America/Anchorage"); - assertAST("hast", "Pacific/Honolulu"); - assertAST("hadt" , "Pacific/Honolulu"); - assertAST("hat" , "Pacific/Honolulu"); - assertAST("hst", "Pacific/Honolulu"); - } +import org.junit.jupiter.api.Test; - @Test - public void meridian_indicator() throws Exception { - _ruleName = "meridian_indicator"; - - assertAST("am", "am"); - assertAST("a.m.", "am"); - assertAST("a", "am"); - assertAST("pm", "pm"); - assertAST("p.m.", "pm"); - assertAST("p", "pm"); - } - - @Test - public void minutes() throws Exception { - _ruleName = "minutes"; +class TimeGrammarTest extends AbstractGrammarTest { - assertAST("00", "(MINUTES_OF_HOUR 00)"); - assertAST("01", "(MINUTES_OF_HOUR 01)"); - assertAST("02", "(MINUTES_OF_HOUR 02)"); - assertAST("03", "(MINUTES_OF_HOUR 03)"); - assertAST("04", "(MINUTES_OF_HOUR 04)"); - assertAST("05", "(MINUTES_OF_HOUR 05)"); - assertAST("06", "(MINUTES_OF_HOUR 06)"); - assertAST("07", "(MINUTES_OF_HOUR 07)"); - assertAST("08", "(MINUTES_OF_HOUR 08)"); - assertAST("09", "(MINUTES_OF_HOUR 09)"); - assertAST("10", "(MINUTES_OF_HOUR 10)"); - assertAST("11", "(MINUTES_OF_HOUR 11)"); - assertAST("12", "(MINUTES_OF_HOUR 12)"); - assertAST("13", "(MINUTES_OF_HOUR 13)"); - assertAST("14", "(MINUTES_OF_HOUR 14)"); - assertAST("15", "(MINUTES_OF_HOUR 15)"); - assertAST("16", "(MINUTES_OF_HOUR 16)"); - assertAST("17", "(MINUTES_OF_HOUR 17)"); - assertAST("18", "(MINUTES_OF_HOUR 18)"); - assertAST("19", "(MINUTES_OF_HOUR 19)"); - assertAST("20", "(MINUTES_OF_HOUR 20)"); - assertAST("21", "(MINUTES_OF_HOUR 21)"); - assertAST("22", "(MINUTES_OF_HOUR 22)"); - assertAST("23", "(MINUTES_OF_HOUR 23)"); - assertAST("24", "(MINUTES_OF_HOUR 24)"); - assertAST("25", "(MINUTES_OF_HOUR 25)"); - assertAST("26", "(MINUTES_OF_HOUR 26)"); - assertAST("27", "(MINUTES_OF_HOUR 27)"); - assertAST("28", "(MINUTES_OF_HOUR 28)"); - assertAST("29", "(MINUTES_OF_HOUR 29)"); - assertAST("30", "(MINUTES_OF_HOUR 30)"); - assertAST("31", "(MINUTES_OF_HOUR 31)"); - assertAST("32", "(MINUTES_OF_HOUR 32)"); - assertAST("33", "(MINUTES_OF_HOUR 33)"); - assertAST("34", "(MINUTES_OF_HOUR 34)"); - assertAST("35", "(MINUTES_OF_HOUR 35)"); - assertAST("36", "(MINUTES_OF_HOUR 36)"); - assertAST("37", "(MINUTES_OF_HOUR 37)"); - assertAST("38", "(MINUTES_OF_HOUR 38)"); - assertAST("39", "(MINUTES_OF_HOUR 39)"); - assertAST("40", "(MINUTES_OF_HOUR 40)"); - assertAST("41", "(MINUTES_OF_HOUR 41)"); - assertAST("42", "(MINUTES_OF_HOUR 42)"); - assertAST("43", "(MINUTES_OF_HOUR 43)"); - assertAST("44", "(MINUTES_OF_HOUR 44)"); - assertAST("45", "(MINUTES_OF_HOUR 45)"); - assertAST("46", "(MINUTES_OF_HOUR 46)"); - assertAST("47", "(MINUTES_OF_HOUR 47)"); - assertAST("48", "(MINUTES_OF_HOUR 48)"); - assertAST("49", "(MINUTES_OF_HOUR 49)"); - assertAST("50", "(MINUTES_OF_HOUR 50)"); - assertAST("51", "(MINUTES_OF_HOUR 51)"); - assertAST("52", "(MINUTES_OF_HOUR 52)"); - assertAST("53", "(MINUTES_OF_HOUR 53)"); - assertAST("54", "(MINUTES_OF_HOUR 54)"); - assertAST("55", "(MINUTES_OF_HOUR 55)"); - assertAST("56", "(MINUTES_OF_HOUR 56)"); - assertAST("57", "(MINUTES_OF_HOUR 57)"); - assertAST("58", "(MINUTES_OF_HOUR 58)"); - assertAST("59", "(MINUTES_OF_HOUR 59)"); - //assertAST("0", "FAIL "); - //assertAST("1", "FAIL"); - //assertAST("2", "FAIL"); - //assertAST("3", "FAIL "); - //assertAST("4", "FAIL"); - //assertAST("5", "FAIL"); - //assertAST("6", "FAIL"); - //assertAST("7", "FAIL"); - //assertAST("8", "FAIL"); - //assertAST("9", "FAIL"); - //"60" FAIL - } - - @Test - public void hours() throws Exception { - _ruleName = "hours"; - - assertAST("00", "(HOURS_OF_DAY 00)"); - assertAST("01", "(HOURS_OF_DAY 01)"); - assertAST("1" , "(HOURS_OF_DAY 1)"); - assertAST("02", "(HOURS_OF_DAY 02)"); - assertAST("2" , "(HOURS_OF_DAY 2)"); - assertAST("03", "(HOURS_OF_DAY 03)"); - assertAST("3" , "(HOURS_OF_DAY 3)"); - assertAST("04", "(HOURS_OF_DAY 04)"); - assertAST("4" , "(HOURS_OF_DAY 4)"); - assertAST("05", "(HOURS_OF_DAY 05)"); - assertAST("5" , "(HOURS_OF_DAY 5)"); - assertAST("06", "(HOURS_OF_DAY 06)"); - assertAST("6" , "(HOURS_OF_DAY 6)"); - assertAST("07", "(HOURS_OF_DAY 07)"); - assertAST("7" , "(HOURS_OF_DAY 7)"); - assertAST("08", "(HOURS_OF_DAY 08)"); - assertAST("8" , "(HOURS_OF_DAY 8)"); - assertAST("09", "(HOURS_OF_DAY 09)"); - assertAST("9" , "(HOURS_OF_DAY 9)"); - assertAST("10", "(HOURS_OF_DAY 10)"); - assertAST("11", "(HOURS_OF_DAY 11)"); - assertAST("12", "(HOURS_OF_DAY 12)"); - assertAST("13", "(HOURS_OF_DAY 13)"); - assertAST("14", "(HOURS_OF_DAY 14)"); - assertAST("15", "(HOURS_OF_DAY 15)"); - assertAST("16", "(HOURS_OF_DAY 16)"); - assertAST("17", "(HOURS_OF_DAY 17)"); - assertAST("18", "(HOURS_OF_DAY 18)"); - assertAST("19", "(HOURS_OF_DAY 19)"); - assertAST("20", "(HOURS_OF_DAY 20)"); - assertAST("21", "(HOURS_OF_DAY 21)"); - assertAST("22", "(HOURS_OF_DAY 22)"); - assertAST("23", "(HOURS_OF_DAY 23)"); - //"-1" FAIL - //"24" FAIL - } - - @Test - public void explicit_time() throws Exception { - _ruleName = "explicit_time"; - - assertAST("0600h", "(EXPLICIT_TIME (HOURS_OF_DAY 06) (MINUTES_OF_HOUR 00))"); - assertAST("06:00h", "(EXPLICIT_TIME (HOURS_OF_DAY 06) (MINUTES_OF_HOUR 00))"); - assertAST("06:00 hours", "(EXPLICIT_TIME (HOURS_OF_DAY 06) (MINUTES_OF_HOUR 00))"); - assertAST("0000", "(EXPLICIT_TIME (HOURS_OF_DAY 00) (MINUTES_OF_HOUR 00))"); - assertAST("0700h", "(EXPLICIT_TIME (HOURS_OF_DAY 07) (MINUTES_OF_HOUR 00))"); - assertAST("6pm", "(EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) pm)"); - assertAST("5:30 a.m.", "(EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 30) am)"); - assertAST("5", "(EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0))"); - assertAST("12:59", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 59))"); - assertAST("23:59", "(EXPLICIT_TIME (HOURS_OF_DAY 23) (MINUTES_OF_HOUR 59))"); - assertAST("00:00", "(EXPLICIT_TIME (HOURS_OF_DAY 00) (MINUTES_OF_HOUR 00))"); - assertAST("10:00am", "(EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 00) am)"); - assertAST("10a", "(EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 0) am)"); - assertAST("10am", "(EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 0) am)"); - assertAST("10", "(EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 0))"); - assertAST("8p", "(EXPLICIT_TIME (HOURS_OF_DAY 8) (MINUTES_OF_HOUR 0) pm)"); - assertAST("8pm", "(EXPLICIT_TIME (HOURS_OF_DAY 8) (MINUTES_OF_HOUR 0) pm)"); - assertAST("8 pm", "(EXPLICIT_TIME (HOURS_OF_DAY 8) (MINUTES_OF_HOUR 0) pm)"); - assertAST("noon", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)"); - assertAST("afternoon", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)"); - assertAST("midnight", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am)"); - assertAST("mid-night", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am)"); - } + @Test + void time_zone_abbreviation() throws Exception { + ruleName = "time_zone_abbreviation"; + + assertAST("est", "America/New_York"); + assertAST("edt", "America/New_York"); + assertAST("et", "America/New_York"); + assertAST("pst", "America/Los_Angeles"); + assertAST("pdt", "America/Los_Angeles"); + assertAST("pt", "America/Los_Angeles"); + assertAST("cst", "America/Chicago"); + assertAST("cdt", "America/Chicago"); + assertAST("ct", "America/Chicago"); + assertAST("mst", "America/Denver"); + assertAST("mdt", "America/Denver"); + assertAST("mt", "America/Denver"); + assertAST("akst", "America/Anchorage"); + assertAST("akdt", "America/Anchorage"); + assertAST("akt", "America/Anchorage"); + assertAST("hast", "Pacific/Honolulu"); + assertAST("hadt", "Pacific/Honolulu"); + assertAST("hat", "Pacific/Honolulu"); + assertAST("hst", "Pacific/Honolulu"); + } + + @Test + void meridian_indicator() throws Exception { + ruleName = "meridian_indicator"; + + assertAST("am", "am"); + assertAST("a.m.", "am"); + assertAST("a", "am"); + assertAST("pm", "pm"); + assertAST("p.m.", "pm"); + assertAST("p", "pm"); + } + + @Test + void minutes() throws Exception { + ruleName = "minutes"; + for (int i = 1; i <= 59; i++) { + String input = String.format("%02d", i); + assertAST(input, String.format("(MINUTES_OF_HOUR %02d)", i)); + } + + // TODO failures are not actually failing the parsing + assertAST("0", "(MINUTES_OF_HOUR ,1:0], resync=0>)"); + //assertAST("1", "FAIL"); + //assertAST("2", "FAIL"); + //assertAST("3", "FAIL "); + //assertAST("4", "FAIL"); + //assertAST("5", "FAIL"); + //assertAST("6", "FAIL"); + //assertAST("7", "FAIL"); + //assertAST("8", "FAIL"); + //assertAST("9", "FAIL"); + //"60" FAIL + } + + @Test + void hours() throws Exception { + ruleName = "hours"; + + // without prefix + for (int i = 1; i <= 23; i++) { + String input = String.format("%02d", i); + assertAST(input, String.format("(HOURS_OF_DAY %02d)", i)); + } + + // with prefix + for (int i = 1; i <= 23; i++) { + String input = String.format("%d", i); + assertAST(input, String.format("(HOURS_OF_DAY %d)", i)); + } + + //"-1" FAIL + //"24" FAIL + } + + @Test + void explicit_time() throws Exception { + ruleName = "explicit_time"; + + assertAST("0600h", "(EXPLICIT_TIME (HOURS_OF_DAY 06) (MINUTES_OF_HOUR 00))"); + assertAST("06:00h", "(EXPLICIT_TIME (HOURS_OF_DAY 06) (MINUTES_OF_HOUR 00))"); + assertAST("06:00 hours", "(EXPLICIT_TIME (HOURS_OF_DAY 06) (MINUTES_OF_HOUR 00))"); + assertAST("0000", "(EXPLICIT_TIME (HOURS_OF_DAY 00) (MINUTES_OF_HOUR 00))"); + assertAST("0700h", "(EXPLICIT_TIME (HOURS_OF_DAY 07) (MINUTES_OF_HOUR 00))"); + assertAST("6pm", "(EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) pm)"); + assertAST("5:30 a.m.", "(EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 30) am)"); + assertAST("5", "(EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0))"); + assertAST("12:59", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 59))"); + assertAST("23:59", "(EXPLICIT_TIME (HOURS_OF_DAY 23) (MINUTES_OF_HOUR 59))"); + assertAST("00:00", "(EXPLICIT_TIME (HOURS_OF_DAY 00) (MINUTES_OF_HOUR 00))"); + assertAST("10:00am", "(EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 00) am)"); + assertAST("10a", "(EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 0) am)"); + assertAST("10am", "(EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 0) am)"); + assertAST("10", "(EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 0))"); + assertAST("8p", "(EXPLICIT_TIME (HOURS_OF_DAY 8) (MINUTES_OF_HOUR 0) pm)"); + assertAST("8pm", "(EXPLICIT_TIME (HOURS_OF_DAY 8) (MINUTES_OF_HOUR 0) pm)"); + assertAST("8 pm", "(EXPLICIT_TIME (HOURS_OF_DAY 8) (MINUTES_OF_HOUR 0) pm)"); + assertAST("noon", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)"); + assertAST("afternoon", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)"); + assertAST("midnight", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am)"); + assertAST("mid-night", "(EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am)"); + } } diff --git a/src/test/resources/log4j.properties b/src/test/resources/log4j.properties deleted file mode 100644 index 0506e387..00000000 --- a/src/test/resources/log4j.properties +++ /dev/null @@ -1,5 +0,0 @@ -log4j.rootLogger=error, stdout -log4j.appender.stdout=org.apache.log4j.ConsoleAppender -log4j.appender.stdout.Target=System.out -log4j.appender.stdout.layout=org.apache.log4j.PatternLayout -log4j.appender.stdout.layout.ConversionPattern=%-5p %d{yyyy-MM-dd HH:mm:ss} %c{1}:%L - %m %n \ No newline at end of file diff --git a/src/test/resources/log4j2.xml b/src/test/resources/log4j2.xml new file mode 100644 index 00000000..0c8e84ae --- /dev/null +++ b/src/test/resources/log4j2.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/resources/test/datetime-alternative-test-data.csv b/src/test/resources/test/datetime-alternative-test-data.csv new file mode 100644 index 00000000..945fb6c9 --- /dev/null +++ b/src/test/resources/test/datetime-alternative-test-data.csv @@ -0,0 +1,21 @@ +input|expected_ast +this wed. or next at 5pm|(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 4))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm))) +feb 28th or 2 days after|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 28))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 (EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 28)))))) +january fourth or the friday after|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 4))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 (DAY_OF_WEEK 6) (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 4)))))) +10/10/2008 or 10/12/2008|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 10) (YEAR_OF 2008))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 12) (YEAR_OF 2008)))) +next wed or thursday|(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 5))))) +next wed, thurs, fri|(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 5)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 6))))) +next wed, thurs, or fri at 6pm|(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 5))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) pm)) (DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 6))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) pm))) +10/10 or 12/30 or 10/15 at 5pm|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 10))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 30))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 15)) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm))) +monday to friday|(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 2)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 6))))) +1999-12-31 to tomorrow|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 31) (YEAR_OF 1999))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 day)))) +now to 2010-01-01|(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 day))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 01) (DAY_OF_MONTH 01) (YEAR_OF 2010)))) +2009-03-10 9:00 to 11:00|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 03) (DAY_OF_MONTH 10) (YEAR_OF 2009)) (EXPLICIT_TIME (HOURS_OF_DAY 9) (MINUTES_OF_HOUR 00))) (DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 11) (MINUTES_OF_HOUR 00)))) +26 oct 10:00 am to 11:00 am|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 26)) (EXPLICIT_TIME (HOURS_OF_DAY 10) (MINUTES_OF_HOUR 00) am)) (DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 11) (MINUTES_OF_HOUR 00) am))) +jan 1 to 2|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 1))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 2)))) +16:00 nov 6 to 17:00|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 11) (DAY_OF_MONTH 6)) (EXPLICIT_TIME (HOURS_OF_DAY 16) (MINUTES_OF_HOUR 00))) (DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 17) (MINUTES_OF_HOUR 00)))) +may 2nd to 5th|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 2))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 5) (DAY_OF_MONTH 5)))) +6am dec 5 to 7am|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 12) (DAY_OF_MONTH 5)) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am)) (DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 7) (MINUTES_OF_HOUR 0) am))) +1/3 to 2/3|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 1) (DAY_OF_MONTH 3))) (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 3)))) +2/3 to in 1 week|(DATE_TIME_ALTERNATIVE (DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 2) (DAY_OF_MONTH 3))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 week)))) +first day of may to last day of may|(DATE_TIME_ALTERNATIVE (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 5)) (EXPLICIT_SEEK (DAY_OF_MONTH 1)))) (DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 5)) (EXPLICIT_SEEK (DAY_OF_MONTH 31))))) diff --git a/src/test/resources/test/datetime-test-data.csv b/src/test/resources/test/datetime-test-data.csv new file mode 100644 index 00000000..2ca44ac3 --- /dev/null +++ b/src/test/resources/test/datetime-test-data.csv @@ -0,0 +1,48 @@ +input|expected_ast +seven years ago at 3pm|(DATE_TIME (RELATIVE_DATE (SEEK < by_day 7 year)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) pm)) +1st oct in the year '89 1300 hours|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00))) +1st oct in the year '89 at 1300 hours|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00))) +1st oct in the year '89, 13:00|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00))) +1st oct in the year '89,13:00|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00))) +1st oct in the year '89, at 13:00|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 89)) (EXPLICIT_TIME (HOURS_OF_DAY 13) (MINUTES_OF_HOUR 00))) +3am on oct 1st 2010|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am)) +3am, october first 2010|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am)) +3am,october first 2010|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am)) +3am, on october first 2010|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am)) +3am october first 2010|(DATE_TIME (EXPLICIT_DATE (MONTH_OF_YEAR 10) (DAY_OF_MONTH 1) (YEAR_OF 2010)) (EXPLICIT_TIME (HOURS_OF_DAY 3) (MINUTES_OF_HOUR 0) am)) +next wed. at 5pm|(DATE_TIME (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4))) (EXPLICIT_TIME (HOURS_OF_DAY 5) (MINUTES_OF_HOUR 0) pm)) +3 days after next wed|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 3 (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4)))))) +the sunday after next wed|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 (DAY_OF_WEEK 1) (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4)))))) +two days after today|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 day))) +two days from today|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 day))) +3 sundays after next wed|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 3 (DAY_OF_WEEK 1) (RELATIVE_DATE (SEEK > by_week 1 (DAY_OF_WEEK 4)))))) +the day after next|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 day))) +the week after next|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 week))) +the month after next|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 month))) +the year after next|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 year))) +wed of the week after next|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 week) (EXPLICIT_SEEK (DAY_OF_WEEK 4)))) +the 28th of the month after next|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 2 month) (EXPLICIT_SEEK (DAY_OF_MONTH 28)))) +6 in the morning|(DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am)) +4 in the afternoon|(DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 4) (MINUTES_OF_HOUR 0) pm)) +monday 6 in the morning|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 2))) (EXPLICIT_TIME (HOURS_OF_DAY 6) (MINUTES_OF_HOUR 0) am)) +monday 4 in the afternoon|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 2))) (EXPLICIT_TIME (HOURS_OF_DAY 4) (MINUTES_OF_HOUR 0) pm)) +monday 9 in the evening|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (DAY_OF_WEEK 2))) (EXPLICIT_TIME (HOURS_OF_DAY 9) (MINUTES_OF_HOUR 0) pm)) +this morning|(DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 8) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am)) +this afternoon|(DATE_TIME (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)) +final thursday in april|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 4)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 5)))) +final thurs in sep|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 0 (MONTH_OF_YEAR 9)) (EXPLICIT_SEEK 5 (DAY_OF_WEEK 5)))) +tomorrow @ noon|(DATE_TIME (RELATIVE_DATE (SEEK > by_day 1 day)) (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)) +6 hours ago|(DATE_TIME (RELATIVE_TIME (SEEK < by_day 6 hour))) +10 hrs before noon|(DATE_TIME (RELATIVE_TIME (SEEK < by_day (EXPLICIT_SEEK (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)) 10 hour))) +10 hr before midnight|(DATE_TIME (RELATIVE_TIME (SEEK < by_day (EXPLICIT_SEEK (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am)) 10 hour))) +5 hours after noon|(DATE_TIME (RELATIVE_TIME (SEEK > by_day (EXPLICIT_SEEK (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) pm)) 5 hour))) +5 hours after midnight|(DATE_TIME (RELATIVE_TIME (SEEK > by_day (EXPLICIT_SEEK (EXPLICIT_TIME (HOURS_OF_DAY 12) (MINUTES_OF_HOUR 0) (SECONDS_OF_MINUTE 0) am)) 5 hour))) +in 5 seconds|(DATE_TIME (RELATIVE_TIME (SEEK > by_day 5 second))) +in 5 minutes|(DATE_TIME (RELATIVE_TIME (SEEK > by_day 5 minute))) +in 5 hours|(DATE_TIME (RELATIVE_TIME (SEEK > by_day 5 hour))) +4 secs from now|(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 second))) +4 sec from now|(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 second))) +4 minutes from now|(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 minute))) +4 mins from now|(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 minute))) +4 min from now|(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 minute))) +4 hours from now|(DATE_TIME (RELATIVE_TIME (SEEK > by_day (RELATIVE_DATE (SEEK > by_day 0 day)) 4 hour))) \ No newline at end of file diff --git a/src/test/resources/test/holiday-statement-test-data.csv b/src/test/resources/test/holiday-statement-test-data.csv new file mode 100644 index 00000000..042b9284 --- /dev/null +++ b/src/test/resources/test/holiday-statement-test-data.csv @@ -0,0 +1,14 @@ +input|expected_ast +april fool's day|(SEEK > by_day 1 APRIL_FOOLS_DAY) +next christmas|(SEEK > by_week 1 CHRISTMAS) +coming christmas|(SEEK > by_day 1 CHRISTMAS) +upcoming christmas|(SEEK > by_day 1 CHRISTMAS) +last halloween|(SEEK < by_week 1 HALLOWEEN) +past halloween|(SEEK < by_day 1 HALLOWEEN) +in three christmases|(SEEK > by_day 3 CHRISTMAS) +three christmases from now|(SEEK > by_day 3 CHRISTMAS) +3 christmases ago|(SEEK < by_day 3 CHRISTMAS) +2 april fool's days ago|(SEEK < by_day 2 APRIL_FOOLS_DAY) +in 10 thanksgivings|(SEEK > by_day 10 THANKSGIVING) +thanksgiving 2011|(EXPLICIT_SEEK THANKSGIVING (YEAR_OF 2011)) +christmas, '95|(EXPLICIT_SEEK CHRISTMAS (YEAR_OF 95)) \ No newline at end of file diff --git a/src/test/resources/test/holidays-test-data.csv b/src/test/resources/test/holidays-test-data.csv new file mode 100644 index 00000000..bd8b7c8a --- /dev/null +++ b/src/test/resources/test/holidays-test-data.csv @@ -0,0 +1,68 @@ +input|expected_ast +april fool's day|APRIL_FOOLS_DAY +april fools day|APRIL_FOOLS_DAY +april fool day|APRIL_FOOLS_DAY +black friday|BLACK_FRIDAY +black fri|BLACK_FRIDAY +black fri.|BLACK_FRIDAY +christmas|CHRISTMAS +christmas day|CHRISTMAS +christmas eve|CHRISTMAS_EVE +christmas eve.|CHRISTMAS_EVE +christmas evening|CHRISTMAS_EVE +columbus day|COLUMBUS_DAY +earth day|EARTH_DAY +easter|EASTER +easter day|EASTER +easter sunday|EASTER +father's day|FATHERS_DAY +fathers day|FATHERS_DAY +flag day|FLAG_DAY +good friday|GOOD_FRIDAY +good fri|GOOD_FRIDAY +good fri.|GOOD_FRIDAY +groundhog day|GROUNDHOG_DAY +groundhogs day|GROUNDHOG_DAY +groundhog's day|GROUNDHOG_DAY +halloween|HALLOWEEN +haloween|HALLOWEEN +halloween day|HALLOWEEN +independence day|INDEPENDENCE_DAY +kwanzaa|KWANZAA +kwanza|KWANZAA +kwanzaa day|KWANZAA +labor day|LABOR_DAY +martin luther king day|MLK_DAY +martin luther king jr.'s day|MLK_DAY +martin luther king jr. day|MLK_DAY +martin luther king jr day|MLK_DAY +mlk day|MLK_DAY +memorial day|MEMORIAL_DAY +memorial day|MEMORIAL_DAY +mothers day|MOTHERS_DAY +mother's day|MOTHERS_DAY +new year's day|NEW_YEARS_DAY +new years day|NEW_YEARS_DAY +new years|NEW_YEARS_DAY +new year's eve|NEW_YEARS_EVE +new years eve|NEW_YEARS_EVE +new years eve.|NEW_YEARS_EVE +patriot day|PATRIOT_DAY +president's day|PRESIDENTS_DAY +presidents day|PRESIDENTS_DAY +president day|PRESIDENTS_DAY +st. patricks day|ST_PATRICKS_DAY +st patrick's day|ST_PATRICKS_DAY +saint patrick's day|ST_PATRICKS_DAY +saint paddy's day|ST_PATRICKS_DAY +saint paddys day|ST_PATRICKS_DAY +tax day|TAX_DAY +thanksgiving|THANKSGIVING +thanksgiving day|THANKSGIVING +election day|ELECTION_DAY +valentine's day|VALENTINES_DAY +valentines day|VALENTINES_DAY +valentine day|VALENTINES_DAY +veterans day|VETERANS_DAY +veteran's day|VETERANS_DAY +veteran day|VETERANS_DAY \ No newline at end of file From 3f4e3ef91f3da709ec1008d8a0f17ab60fcb2b47 Mon Sep 17 00:00:00 2001 From: "$(git --no-pager log --format=format:'%an' -n 1)" <$(git --no-pager log --format=format:'%ae' -n 1)> Date: Wed, 4 Jun 2025 13:47:14 +0200 Subject: [PATCH 7/8] #30 remove gradle dependency scan --- .github/workflows/gradle-build.yml | 47 +++++++++++++++--------------- build.gradle | 5 +++- 2 files changed, 27 insertions(+), 25 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index f3179f44..44f33072 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -1,29 +1,28 @@ name: Java CI with Gradle on: - push: - branches: [ main ] - pull_request: - branches: [ main ] + push: + branches: [ main ] + pull_request: + branches: [ main ] + +permissions: + contents: write jobs: - build: - name: Java ${{ matrix.java_version }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - java_version: ['8'] - # java_version: ['8', '11', '17'] - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 - with: - java-version: ${{ matrix.java_version }} - distribution: 'temurin' - - name: Setup Gradle to generate and submit dependency graphs - uses: gradle/gradle-build-action@v2 - with: - dependency-graph: generate-and-submit - - name: Run a build and generate the dependency graph which will be submitted post-job - run: ./gradlew clean build --info + build: + name: Java ${{ matrix.java_version }} + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + java_version: [ '8' ] + # java_version: ['8', '11', '17'] + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + java-version: ${{ matrix.java_version }} + distribution: 'temurin' + - name: Run a build and generate the dependency graph which will be submitted post-job + run: ./gradlew clean build --info diff --git a/build.gradle b/build.gradle index adabd2c6..be096dc1 100644 --- a/build.gradle +++ b/build.gradle @@ -74,7 +74,6 @@ test { } } - tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' } @@ -82,3 +81,7 @@ tasks.withType(JavaCompile).configureEach { tasks.withType(Javadoc).configureEach { options.encoding = 'UTF-8' } + +tasks.compileJava { + dependsOn tasks.generateGrammarSource +} \ No newline at end of file From 72668d69292fa4c00f50cc66c13f3c8736341a5d Mon Sep 17 00:00:00 2001 From: "$(git --no-pager log --format=format:'%an' -n 1)" <$(git --no-pager log --format=format:'%ae' -n 1)> Date: Wed, 4 Jun 2025 13:55:31 +0200 Subject: [PATCH 8/8] #30 build with Java 17 --- .github/workflows/gradle-build.yml | 4 +-- .../workflows/publish-to-github-packages.yml | 28 +++++++++---------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 44f33072..ed500900 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - java_version: [ '8' ] + java_version: [ '17' ] # java_version: ['8', '11', '17'] steps: - uses: actions/checkout@v4 @@ -24,5 +24,5 @@ jobs: with: java-version: ${{ matrix.java_version }} distribution: 'temurin' - - name: Run a build and generate the dependency graph which will be submitted post-job + - name: Run a build run: ./gradlew clean build --info diff --git a/.github/workflows/publish-to-github-packages.yml b/.github/workflows/publish-to-github-packages.yml index d85721b5..93c5ad51 100644 --- a/.github/workflows/publish-to-github-packages.yml +++ b/.github/workflows/publish-to-github-packages.yml @@ -10,7 +10,7 @@ name: Publish package to GitHub Packages on: release: - types: [created] + types: [ created ] jobs: publish: runs-on: ubuntu-latest @@ -18,16 +18,16 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 - with: - java-version: '8' - distribution: 'temurin' - - name: Validate Gradle wrapper - uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 - - name: Publish package - uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 - with: - arguments: publish - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - uses: actions/checkout@v4 + - uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 + - name: Publish package + uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 + with: + arguments: publish + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}