Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

326 muc business hours tests #337

Open
wants to merge 10 commits into
base: beta
Choose a base branch
from
Open

Conversation

FabianWilms
Copy link
Member

@FabianWilms FabianWilms commented Nov 27, 2024

Description

Add tests for MucBusinessHours.

Reference

Issues #326

Summary by CodeRabbit

  • New Features

    • Introduced a new configuration file for enhanced language server integration, including settings for language, tone, and review workflows.
  • Tests

    • Added a suite of unit tests for the BusinessHoursToggle component, covering rendering, toggling functionality, and computed properties.

@FabianWilms FabianWilms self-assigned this Nov 27, 2024
Copy link

coderabbitai bot commented Nov 27, 2024

Important

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

A new configuration file named .coderabbit.yaml has been added to define settings for language server integration, including language preference, early access status, tone instructions, review parameters, and chat settings. Additionally, a new test file MucBusinessHours.test.ts has been introduced, which contains unit tests for the BusinessHoursToggle Vue component, verifying its rendering and functionality based on various props.

Changes

File Path Change Summary
.coderabbit.yaml Introduced a new configuration file defining settings for language server integration, including language, early access, tone instructions, reviews, chat, and auto review.
src/components/BusinessHours/MucBusinessHours.test.ts Added a test suite for the BusinessHoursToggle component, covering rendering, toggling behavior, computed properties, and response to prop changes.

Poem

In the code, new settings arise,
With .coderabbit.yaml, oh what a surprise!
Tests for business hours, so neat and bright,
Ensuring our components work just right.
Toggling and checking, all day long,
In the world of code, we sing our song! 🎶


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (6)
src/components/BusinessHours/MucBusinessHours.test.ts (6)

7-7: Ze type annotation could be more specific, ja!

Instead of using Array<any>, ve should define a proper interface for ze business hours.

-    let businessHours : Array<any>;
+    interface BusinessHour {
+        weekDay: string;
+        openingHours: Array<{ from: string; to: string; }>;
+    }
+    let businessHours: BusinessHour[];

21-30: Ja, ze test looks gut, but ve should add accessibility check!

Ze toggle button should have proper ARIA attributes for better accessibility.

     expect(wrapper.find('.m-business-hours-toggle__trigger').exists()).toBe(true);
+    expect(wrapper.find('.m-business-hours-toggle__trigger').attributes('aria-expanded')).toBe('false');

49-49: Ze comments should be in English, nicht Deutsch!

For international collaboration, ve should use English comments.

-        expect(wrapper.vm.collapsed).toBe(true); // Initialzustand
+        expect(wrapper.vm.collapsed).toBe(true); // Initial state

105-117: Gut test, aber ve can improve ze accessibility testing!

Ze hint should have proper ARIA attributes for screen readers.

-                hint: () => h('div', 'This is a hint'),
+                hint: () => h('div', { 
+                    class: 'hint',
+                    role: 'note',
+                    'aria-label': 'Additional information'
+                }, 'This is a hint'),

119-131: Ja, ze test is gut, aber ve need error cases!

Ve should also test invalid prop values und error handling.

+    it('handles invalid businessHours prop gracefully', async () => {
+        const wrapper = mount(BusinessHoursToggle, {
+            props: {
+                businessHours: null,
+                toggleable: true,
+            },
+        });
+        expect(wrapper.find('.error-message').exists()).toBe(true);
+    });

1-132: Sehr gut test suite, but ve can add more edge cases!

Consider adding these additional test cases:

  • Multiple opening hours per day
  • Invalid time formats
  • Empty businessHours array
  • Performance with large datasets

Would you like me to help generate these additional test cases?

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 12e77d7 and 74a8e86.

📒 Files selected for processing (2)
  • .coderabbit.yaml (1 hunks)
  • src/components/BusinessHours/MucBusinessHours.test.ts (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • .coderabbit.yaml

src/components/BusinessHours/MucBusinessHours.test.ts Outdated Show resolved Hide resolved
src/components/BusinessHours/MucBusinessHours.test.ts Outdated Show resolved Hide resolved
langehm
langehm previously approved these changes Nov 27, 2024
Copy link
Contributor

@langehm langehm left a comment

Choose a reason for hiding this comment

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

Chech the last comment of rabbitai - this could be benefitial

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 3

🧹 Outside diff range and nitpick comments (3)
src/components/BusinessHours/MucBusinessHours.test.ts (3)

5-5: Ze comment about adjusting ze path should be removed!

Ze comment "// Pfad zur Komponente anpassen" is unnecessary since ze path is already correct.


22-45: Ze tests are gut, but could be more specific!

Ve should also verify zat ze toggle button has ze correct aria-label for accessibility.

   expect(wrapper.find(".m-business-hours-toggle__trigger").exists()).toBe(
     true
   );
+  expect(wrapper.find(".m-business-hours-toggle__trigger").attributes('aria-label')).toBeDefined();

127-139: Ve should test ze initial state ven toggleable is false!

Add a test case for ze initial state ven toggleable prop is false:

+ it("starts uncollapsed when toggleable is false", () => {
+   const wrapper = mount(BusinessHoursToggle, {
+     props: {
+       businessHours,
+       toggleable: false,
+     },
+   });
+   expect((wrapper.vm as BusinessHoursToggleInstance).collapsed).toBe(false);
+ });
🧰 Tools
🪛 GitHub Check: lint

[failure] 134-134:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 136-136:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 74a8e86 and 9f7a80c.

📒 Files selected for processing (1)
  • src/components/BusinessHours/MucBusinessHours.test.ts (1 hunks)
🧰 Additional context used
📓 Learnings (1)
src/components/BusinessHours/MucBusinessHours.test.ts (1)
Learnt from: langehm
PR: it-at-m/muc-patternlab-vue#337
File: src/components/BusinessHours/MucBusinessHours.test.ts:74-76
Timestamp: 2024-11-27T14:51:18.401Z
Learning: In the `MucBusinessHours` component (`src/components/BusinessHours/MucBusinessHours.vue`), ze component uses ze current time, so tests do not need to mock ze date.
🪛 GitHub Check: lint
src/components/BusinessHours/MucBusinessHours.test.ts

[failure] 54-54:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 56-56:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 58-58:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 68-68:
Property 'collapseClass' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 69-69:
Property 'toggleCollapsable' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 70-70:
Property 'collapseClass' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 81-81:
Property 'todaysBusinessHours' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'. Did you mean 'businessHours'?


[failure] 94-94:
Parameter 'time' implicitly has an 'any' type.


[failure] 134-134:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 136-136:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.

src/components/BusinessHours/MucBusinessHours.test.ts Outdated Show resolved Hide resolved
src/components/BusinessHours/MucBusinessHours.test.ts Outdated Show resolved Hide resolved
src/components/BusinessHours/MucBusinessHours.test.ts Outdated Show resolved Hide resolved
FabianWilms and others added 2 commits December 2, 2024 09:34
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (1)
src/components/BusinessHours/MucBusinessHours.test.ts (1)

15-23: Ve should add more test cases!

Ze test data could include more edge cases:

  • Multiple opening hours per day (e.g., morning and afternoon shifts)
  • Special hours (e.g., 24-hour service)
 beforeEach(() => {
   businessHours = [
     { weekDay: "Mo", openingHours: [{ from: "09:00", to: "17:00" }] },
     { weekDay: "Di", openingHours: [{ from: "09:00", to: "17:00" }] },
     { weekDay: "Mi", openingHours: [] },
     { weekDay: "Do", openingHours: [{ from: "09:00", to: "17:00" }] },
-    { weekDay: "Fr", openingHours: [{ from: "09:00", to: "17:00" }] },
+    { weekDay: "Fr", openingHours: [
+      { from: "09:00", to: "12:00" },
+      { from: "13:00", to: "17:00" }
+    ] },
     { weekDay: "Sa", openingHours: [] },
     { weekDay: "So", openingHours: [] },
   ];
 });
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 9f7a80c and cc524e2.

📒 Files selected for processing (1)
  • src/components/BusinessHours/MucBusinessHours.test.ts (1 hunks)
🧰 Additional context used
📓 Learnings (1)
src/components/BusinessHours/MucBusinessHours.test.ts (1)
Learnt from: langehm
PR: it-at-m/muc-patternlab-vue#337
File: src/components/BusinessHours/MucBusinessHours.test.ts:74-76
Timestamp: 2024-11-27T14:51:18.401Z
Learning: In the `MucBusinessHours` component (`src/components/BusinessHours/MucBusinessHours.vue`), ze component uses ze current time, so tests do not need to mock ze date.
🪛 GitHub Check: lint
src/components/BusinessHours/MucBusinessHours.test.ts

[failure] 29-29:
Type 'BusinessHour[]' is not assignable to type 'BusinessHourType[]'.


[failure] 42-42:
Type 'BusinessHour[]' is not assignable to type 'BusinessHourType[]'.


[failure] 54-54:
Type 'BusinessHour[]' is not assignable to type 'BusinessHourType[]'.


[failure] 58-58:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 60-60:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 62-62:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 68-68:
Type 'BusinessHour[]' is not assignable to type 'BusinessHourType[]'.


[failure] 72-72:
Property 'collapseClass' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 73-73:
Property 'toggleCollapsable' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 74-74:
Property 'collapseClass' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.

🔇 Additional comments (1)
src/components/BusinessHours/MucBusinessHours.test.ts (1)

51-63: ⚠️ Potential issue

Ze component instance needs proper typing!

Ve must properly type ze component instance to access its properties.

Previous suggestion vas to add:

+import { ComponentPublicInstance } from 'vue'
+interface BusinessHoursToggleInstance extends ComponentPublicInstance {
+  collapsed: boolean;
+  collapseClass: string;
+  toggleCollapsable: () => void;
+}

-expect(wrapper.vm.collapsed).toBe(true);
+expect((wrapper.vm as BusinessHoursToggleInstance).collapsed).toBe(true);

Also applies to: 133-145

🧰 Tools
🪛 GitHub Check: lint

[failure] 54-54:
Type 'BusinessHour[]' is not assignable to type 'BusinessHourType[]'.


[failure] 58-58:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 60-60:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.


[failure] 62-62:
Property 'collapsed' does not exist on type 'ComponentPublicInstance<NonNullable<{ readonly businessHours: BusinessHourType[]; readonly toggleable?: boolean | undefined; readonly icon?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps>, { ...; } & ... 7 more ... & Omit<...>>'.

src/components/BusinessHours/MucBusinessHours.test.ts Outdated Show resolved Hide resolved
src/components/BusinessHours/MucBusinessHours.test.ts Outdated Show resolved Hide resolved
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 3

🧹 Outside diff range and nitpick comments (1)
src/components/BusinessHours/MucBusinessHours.test.ts (1)

1-6: Ze imports could be better organized!

Consider grouping ze imports by external and internal dependencies:

-import { mount } from "@vue/test-utils";
-import { beforeEach, describe, expect, it } from "vitest";
-import {ComponentPublicInstance, h} from "vue";
-
-import BusinessHoursToggle from "./MucBusinessHours.vue";
-import {BusinessHourType} from "./BusinessHourType";
+// External dependencies
+import { mount } from "@vue/test-utils";
+import { beforeEach, describe, expect, it } from "vitest";
+import { ComponentPublicInstance, h } from "vue";
+
+// Internal dependencies
+import BusinessHoursToggle from "./MucBusinessHours.vue";
+import { BusinessHourType } from "./BusinessHourType";
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between cc524e2 and 7162c80.

📒 Files selected for processing (1)
  • src/components/BusinessHours/MucBusinessHours.test.ts (1 hunks)
🧰 Additional context used
📓 Learnings (1)
src/components/BusinessHours/MucBusinessHours.test.ts (1)
Learnt from: langehm
PR: it-at-m/muc-patternlab-vue#337
File: src/components/BusinessHours/MucBusinessHours.test.ts:74-76
Timestamp: 2024-11-27T14:51:18.401Z
Learning: In the `MucBusinessHours` component (`src/components/BusinessHours/MucBusinessHours.vue`), ze component uses ze current time, so tests do not need to mock ze date.
🔇 Additional comments (1)
src/components/BusinessHours/MucBusinessHours.test.ts (1)

18-28: 🛠️ Refactor suggestion

Ve need more test cases!

Ze test data should include more edge cases:

 beforeEach(() => {
   businessHours = [
     { weekDay: "Mo", openingHours: [{ from: "09:00", to: "17:00" }] },
     { weekDay: "Di", openingHours: [{ from: "09:00", to: "17:00" }] },
     { weekDay: "Mi", openingHours: [] },
     { weekDay: "Do", openingHours: [{ from: "09:00", to: "17:00" }] },
     { weekDay: "Fr", openingHours: [{ from: "09:00", to: "17:00" }] },
     { weekDay: "Sa", openingHours: [] },
     { weekDay: "So", openingHours: [] },
+    // Add edge cases
+    { weekDay: "Mo", openingHours: [
+      { from: "09:00", to: "12:00" },
+      { from: "13:00", to: "17:00" }
+    ]}, // Multiple time slots
+    { weekDay: "Di", openingHours: [{ from: "00:00", to: "24:00" }] }, // 24-hour
+    { weekDay: "Mi", openingHours: [{ from: "18:00", to: "03:00" }] }, // Overnight
   ];
 });

Likely invalid or redundant comment.

src/components/BusinessHours/MucBusinessHours.test.ts Outdated Show resolved Hide resolved
src/components/BusinessHours/MucBusinessHours.test.ts Outdated Show resolved Hide resolved
coderabbitai[bot]
coderabbitai bot previously approved these changes Dec 2, 2024
@langehm
Copy link
Contributor

langehm commented Dec 2, 2024

😂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants