File size: 4,662 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import test, { expect, Page } from "@playwright/test";

const toggleConversationPanel = async (page: Page) => {
  const panel = page.getByTestId("conversation-panel");
  await page.waitForTimeout(1000); // Wait for state to stabilize
  const panelIsVisible = await panel.isVisible();

  if (!panelIsVisible) {
    const conversationPanelButton = page.getByTestId(
      "toggle-conversation-panel",
    );
    await conversationPanelButton.click();
  }

  return page.getByTestId("conversation-panel");
};

const selectConversationCard = async (page: Page, index: number) => {
  const panel = await toggleConversationPanel(page);

  // select a conversation
  const conversationItem = panel.getByTestId("conversation-card").nth(index);
  await conversationItem.click();

  // panel should close
  await expect(panel).not.toBeVisible();

  await page.waitForURL(`/conversations/${index + 1}`);
  expect(page.url()).toBe(`http://localhost:3001/conversations/${index + 1}`);
};

test.beforeEach(async ({ page }) => {
  await page.goto("/");
  await page.evaluate(() => {
    localStorage.setItem("FEATURE_MULTI_CONVERSATION_UI", "true");
    localStorage.setItem("analytics-consent", "true");
    localStorage.setItem("SETTINGS_VERSION", "5");
  });
});

test("should only display the create new conversation button when in a conversation", async ({
  page,
}) => {
  const panel = page.getByTestId("conversation-panel");

  const newProjectButton = panel.getByTestId("new-conversation-button");
  await expect(newProjectButton).not.toBeVisible();

  await page.goto("/conversations/1");
  await expect(newProjectButton).toBeVisible();
});

test("redirect to /conversation with the session id as a path param when clicking on a conversation card", async ({
  page,
}) => {
  const panel = page.getByTestId("conversation-panel");

  // select a conversation
  const conversationItem = panel.getByTestId("conversation-card").first();
  await conversationItem.click();

  // panel should close
  expect(panel).not.toBeVisible();

  await page.waitForURL("/conversations/1");
  expect(page.url()).toBe("http://localhost:3001/conversations/1");
});

test("redirect to the home screen if the current session was deleted", async ({
  page,
}) => {
  await page.goto("/conversations/1");
  await page.waitForURL("/conversations/1");

  const panel = page.getByTestId("conversation-panel");
  const firstCard = panel.getByTestId("conversation-card").first();

  const ellipsisButton = firstCard.getByTestId("ellipsis-button");
  await ellipsisButton.click();

  const deleteButton = firstCard.getByTestId("delete-button");
  await deleteButton.click();

  // confirm modal
  const confirmButton = page.getByText("Confirm");
  await confirmButton.click();

  await page.waitForURL("/");
});

test("load relevant files in the file explorer", async ({ page }) => {
  await selectConversationCard(page, 0);

  // check if the file explorer has the correct files
  const fileExplorer = page.getByTestId("file-explorer");

  await expect(fileExplorer.getByText("file1.txt")).toBeVisible();
  await expect(fileExplorer.getByText("file2.txt")).toBeVisible();
  await expect(fileExplorer.getByText("file3.txt")).toBeVisible();

  await selectConversationCard(page, 2);

  // check if the file explorer has the correct files
  expect(fileExplorer.getByText("reboot_skynet.exe")).toBeVisible();
  expect(fileExplorer.getByText("target_list.txt")).toBeVisible();
  expect(fileExplorer.getByText("terminator_blueprint.txt")).toBeVisible();
});

test("should redirect to home screen if conversation deos not exist", async ({
  page,
}) => {
  await page.goto("/conversations/9999");
  await page.waitForURL("/");
});

test("display the conversation details during a conversation", async ({
  page,
}) => {
  const conversationPanelButton = page.getByTestId("toggle-conversation-panel");
  await expect(conversationPanelButton).toBeVisible();
  await conversationPanelButton.click();

  const panel = page.getByTestId("conversation-panel");

  // select a conversation
  const conversationItem = panel.getByTestId("conversation-card").first();
  await conversationItem.click();

  // panel should close
  await expect(panel).not.toBeVisible();

  await page.waitForURL("/conversations/1");
  expect(page.url()).toBe("http://localhost:3001/conversations/1");

  const conversationDetails = page.getByTestId("conversation-card");

  await expect(conversationDetails).toBeVisible();
  await expect(conversationDetails).toHaveText("Conversation 1");
});