forked from OpenHands/OpenHands
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_conversation.py
More file actions
608 lines (534 loc) Β· 23.2 KB
/
test_conversation.py
File metadata and controls
608 lines (534 loc) Β· 23.2 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
"""
E2E: Conversation start test
This test assumes the GitHub token has already been configured (by the
settings test) and verifies that a conversation can be started and the
agent responds to a README line-count question.
"""
import os
import time
from playwright.sync_api import Page, expect
def get_readme_line_count():
"""Get the line count of the main README.md file for verification."""
current_dir = os.getcwd()
if current_dir.endswith('tests/e2e'):
repo_root = os.path.abspath(os.path.join(current_dir, '../..'))
else:
repo_root = current_dir
readme_path = os.path.join(repo_root, 'README.md')
print(f'Looking for README.md at: {readme_path}')
try:
with open(readme_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
return len(lines)
except (FileNotFoundError, IOError, OSError) as e:
print(f'Error reading README.md: {e}')
return 0
def test_conversation_start(page: Page, base_url: str):
"""
Test starting a conversation with the OpenHands agent:
1. Navigate to OpenHands (assumes GitHub token is already configured)
2. Select the OpenHands repository
3. Click Launch
4. Wait for the agent to initialize
5. Ask a question about the README.md file
6. Verify the agent responds correctly
"""
# Create test-results directory if it doesn't exist
os.makedirs('test-results', exist_ok=True)
# Use default URL if base_url is not provided
if not base_url:
base_url = 'http://localhost:12000'
expected_line_count = get_readme_line_count()
print(f'Expected README.md line count: {expected_line_count}')
# Navigate to the OpenHands application
print(f'Step 1: Navigating to OpenHands application at {base_url}...')
page.goto(base_url)
page.wait_for_load_state('networkidle', timeout=30000)
# Take initial screenshot
page.screenshot(path='test-results/conv_01_initial_load.png')
print('Screenshot saved: conv_01_initial_load.png')
# Step 2: Select the OpenHands repository
print('Step 2: Selecting openhands-agent/OpenHands repository...')
# Wait for the home screen to load
home_screen = page.locator('[data-testid="home-screen"]')
expect(home_screen).to_be_visible(timeout=15000)
print('Home screen is visible')
# Look for the repository dropdown/selector
repo_dropdown = page.locator('[data-testid="repo-dropdown"]')
expect(repo_dropdown).to_be_visible(timeout=15000)
print('Repository dropdown is visible')
# Click on the repository input to open dropdown
repo_dropdown.click()
page.wait_for_timeout(1000)
# Type the repository name
try:
page.keyboard.press('Control+a') # Select all
page.keyboard.type('openhands-agent/OpenHands')
print('Used keyboard.type() for React Select component')
except Exception as e:
print(f'Keyboard input failed: {e}')
page.wait_for_timeout(2000) # Wait for search results
# Try to find and click the repository option
option_selectors = [
'[data-testid="repo-dropdown"] [role="option"]:has-text("openhands-agent/OpenHands")',
'[data-testid="repo-dropdown"] [role="option"]:has-text("OpenHands")',
'[data-testid="repo-dropdown"] div[id*="option"]:has-text("openhands-agent/OpenHands")',
'[data-testid="repo-dropdown"] div[id*="option"]:has-text("OpenHands")',
'[role="option"]:has-text("openhands-agent/OpenHands")',
'[role="option"]:has-text("OpenHands")',
'div:has-text("openhands-agent/OpenHands"):not([id="aria-results"])',
'div:has-text("OpenHands"):not([id="aria-results"])',
]
option_found = False
for selector in option_selectors:
try:
option = page.locator(selector).first
if option.is_visible(timeout=3000):
print(f'Found repository option with selector: {selector}')
try:
option.click(force=True)
print('Successfully clicked option with force=True')
option_found = True
page.wait_for_timeout(2000)
break
except Exception:
continue
except Exception:
continue
if not option_found:
print(
'Could not find repository option in dropdown, trying keyboard navigation'
)
page.keyboard.press('ArrowDown')
page.wait_for_timeout(500)
page.keyboard.press('Enter')
print('Used keyboard navigation to select option')
page.screenshot(path='test-results/conv_02_repo_selected.png')
print('Screenshot saved: conv_02_repo_selected.png')
# Step 3: Click Launch button
print('Step 3: Clicking Launch button...')
launch_button = page.locator('[data-testid="repo-launch-button"]')
expect(launch_button).to_be_visible(timeout=10000)
# Wait for the button to be enabled (not disabled)
max_wait_attempts = 30
button_enabled = False
for attempt in range(max_wait_attempts):
try:
is_disabled = launch_button.is_disabled()
if not is_disabled:
print(
f'Repository Launch button is now enabled (attempt {attempt + 1})'
)
button_enabled = True
break
else:
print(
f'Launch button still disabled, waiting... (attempt {attempt + 1}/{max_wait_attempts})'
)
page.wait_for_timeout(2000)
except Exception as e:
print(f'Error checking button state (attempt {attempt + 1}): {e}')
page.wait_for_timeout(2000)
try:
if button_enabled:
launch_button.click()
print('Launch button clicked normally')
else:
print('Launch button still disabled, trying JavaScript force click...')
result = page.evaluate("""() => {
const button = document.querySelector('[data-testid="repo-launch-button"]');
if (button) {
console.log('Found button, removing disabled attribute');
button.removeAttribute('disabled');
console.log('Clicking button');
button.click();
return true;
}
return false;
}""")
if result:
print('Successfully force-clicked Launch button with JavaScript')
else:
print('JavaScript could not find the Launch button')
except Exception as e:
print(f'Error clicking Launch button: {e}')
page.screenshot(path='test-results/conv_03_launch_error.png')
print('Screenshot saved: conv_03_launch_error.png')
raise
# Step 4: Wait for conversation interface to load
print('Step 4: Waiting for conversation interface to load...')
navigation_timeout = 300000 # 5 minutes
check_interval = 10000 # 10 seconds
page.screenshot(path='test-results/conv_04_after_launch.png')
print('Screenshot saved: conv_04_after_launch.png')
loading_selectors = [
'[data-testid="loading-indicator"]',
'[data-testid="loading-spinner"]',
'.loading-spinner',
'.spinner',
'div:has-text("Loading...")',
'div:has-text("Initializing...")',
'div:has-text("Please wait...")',
]
for selector in loading_selectors:
try:
loading = page.locator(selector)
if loading.is_visible(timeout=5000):
print(f'Found loading indicator with selector: {selector}')
print('Waiting for loading to complete...')
expect(loading).not_to_be_visible(timeout=120000)
print('Loading completed')
break
except Exception:
continue
try:
current_url = page.url
print(f'Current URL: {current_url}')
if '/conversation/' in current_url or '/chat/' in current_url:
print('URL indicates conversation page has loaded')
except Exception as e:
print(f'Error checking URL: {e}')
start_time = time.time()
conversation_loaded = False
while time.time() - start_time < navigation_timeout / 1000:
try:
selectors = [
'.scrollbar.flex.flex-col.grow',
'[data-testid="chat-input"]',
'[data-testid="app-route"]',
'[data-testid="conversation-screen"]',
'[data-testid="message-input"]',
'.conversation-container',
'.chat-container',
'textarea',
'form textarea',
'div[role="main"]',
'main',
]
for selector in selectors:
try:
element = page.locator(selector)
if element.is_visible(timeout=2000):
print(
f'Found conversation interface element with selector: {selector}'
)
conversation_loaded = True
break
except Exception:
continue
if conversation_loaded:
break
if (time.time() - start_time) % (check_interval / 1000) < 1:
elapsed = int(time.time() - start_time)
page.screenshot(path=f'test-results/conv_05_waiting_{elapsed}s.png')
print(f'Screenshot saved: conv_05_waiting_{elapsed}s.png')
page.wait_for_timeout(5000)
except Exception as e:
print(f'Error checking for conversation interface: {e}')
page.wait_for_timeout(5000)
if not conversation_loaded:
print('Timed out waiting for conversation interface to load')
page.screenshot(path='test-results/conv_06_timeout.png')
print('Screenshot saved: conv_06_timeout.png')
raise TimeoutError('Timed out waiting for conversation interface to load')
# Step 5: Wait for agent to initialize
print('Step 5: Waiting for agent to initialize...')
try:
chat_input = page.locator('[data-testid="chat-input"]')
expect(chat_input).to_be_visible(timeout=60000)
submit_button = page.locator('[data-testid="chat-input"] button[type="submit"]')
expect(submit_button).to_be_visible(timeout=10000)
print('Agent interface is loaded')
page.wait_for_timeout(10000)
except Exception as e:
print(f'Could not confirm agent interface is loaded: {e}')
page.screenshot(path='test-results/conv_07_agent_ready.png')
print('Screenshot saved: conv_07_agent_ready.png')
# Step 6: Wait for agent to be fully ready for input
print('Step 6: Waiting for agent to be fully ready for input...')
max_wait_time = 480
start_time = time.time()
agent_ready = False
print(f'Waiting up to {max_wait_time} seconds for agent to be ready...')
while time.time() - start_time < max_wait_time:
elapsed = int(time.time() - start_time)
if elapsed % 30 == 0 and elapsed > 0:
page.screenshot(path=f'test-results/conv_waiting_{elapsed}s.png')
print(f'Screenshot saved: conv_waiting_{elapsed}s.png (waiting {elapsed}s)')
try:
status_messages = []
status_bar_selector = '.bg-base-secondary .text-stone-400'
try:
status_elements = page.locator(status_bar_selector)
if status_elements.count() > 0:
for i in range(status_elements.count()):
text = status_elements.nth(i).text_content()
if text and text.strip():
status_messages.append(text.strip())
except Exception:
pass
ready_indicators = [
'div:has-text("Agent is ready")',
'div:has-text("Waiting for user input")',
'div:has-text("Awaiting input")',
'div:has-text("Task completed")',
'div:has-text("Agent has finished")',
]
input_ready = False
submit_ready = False
try:
input_field = page.locator('[data-testid="chat-input"] textarea')
submit_button = page.locator(
'[data-testid="chat-input"] button[type="submit"]'
)
if (
input_field.is_visible(timeout=2000)
and input_field.is_enabled(timeout=2000)
and submit_button.is_visible(timeout=2000)
and submit_button.is_enabled(timeout=2000)
):
print(
'Chat input field and submit button are both visible and enabled'
)
input_ready = True
submit_ready = True
except Exception:
pass
connecting_or_starting = any(
msg
for msg in status_messages
if 'connecting' in msg.lower()
or 'starting' in msg.lower()
or 'runtime to start' in msg.lower()
)
has_ready_indicator = False
for indicator in ready_indicators:
try:
element = page.locator(indicator)
if element.is_visible(timeout=2000):
print(f'Agent appears ready (found: {indicator})')
has_ready_indicator = True
break
except Exception:
continue
if (
(has_ready_indicator or not connecting_or_starting)
and input_ready
and submit_ready
):
print(
'β
Agent is ready for user input - input field and submit button are enabled'
)
agent_ready = True
break
elif (
not connecting_or_starting
and not status_messages
and input_ready
and submit_ready
):
print(
'No status messages found and input is ready, agent appears ready...'
)
agent_ready = True
break
except Exception as e:
print(f'Error checking agent ready state: {e}')
page.wait_for_timeout(2000)
if not agent_ready:
page.screenshot(path='test-results/conv_timeout_waiting_for_agent.png')
raise AssertionError(
f'Agent did not become ready for input within {max_wait_time} seconds'
)
# Step 7: Ask a question about the README.md file
print('Step 7: Asking question about README.md file...')
input_selectors = [
'[data-testid="chat-input"] textarea',
'[data-testid="message-input"]',
'textarea',
'form textarea',
'input[type="text"]',
'[placeholder*="message"]',
'[placeholder*="question"]',
'[placeholder*="ask"]',
'[contenteditable="true"]',
]
message_input = None
for selector in input_selectors:
try:
input_element = page.locator(selector)
if input_element.is_visible(timeout=5000):
print(f'Found message input with selector: {selector}')
message_input = input_element
break
except Exception:
continue
if not message_input:
print('Could not find message input, trying to reload the page')
page.screenshot(path='test-results/conv_08_no_input_found.png')
print('Screenshot saved: conv_08_no_input_found.png')
try:
print('Reloading the page...')
page.reload()
page.wait_for_load_state('networkidle', timeout=30000)
print('Page reloaded')
for selector in input_selectors:
try:
input_element = page.locator(selector)
if input_element.is_visible(timeout=5000):
print(
f'Found message input after reload with selector: {selector}'
)
message_input = input_element
break
except Exception:
continue
except Exception as e:
print(f'Error reloading page: {e}')
if not message_input:
print('Still could not find message input, taking final screenshot')
page.screenshot(path='test-results/conv_09_reload_failed.png')
print('Screenshot saved: conv_09_reload_failed.png')
raise AssertionError('Could not find message input field after reload')
message_input.fill(
'How many lines are there in the README.md file in the root directory of this repository? Please use wc -l README.md to count the lines.'
)
print('Entered question about README.md line count')
submit_selectors = [
'[data-testid="chat-input"] button[type="submit"]',
'button[type="submit"]',
'button:has-text("Send")',
'button:has-text("Submit")',
'button svg[data-testid="send-icon"]',
'button.send-button',
'form button',
'button:right-of(textarea)',
'button:right-of(input[type="text"])',
]
submit_button = None
for selector in submit_selectors:
try:
button_element = page.locator(selector)
if button_element.is_visible(timeout=5000):
print(f'Found submit button with selector: {selector}')
submit_button = button_element
break
except Exception:
continue
button_enabled = False
if submit_button:
max_wait_time = 60
start_time = time.time()
while time.time() - start_time < max_wait_time:
try:
if not submit_button.is_disabled():
button_enabled = True
print('Submit button is enabled')
break
print(
f'Waiting for submit button to be enabled... ({int(time.time() - start_time)}s)'
)
except Exception as e:
print(f'Error checking if button is disabled: {e}')
page.wait_for_timeout(2000)
if not submit_button or not button_enabled:
print('Submit button not found or never became enabled, trying alternatives')
try:
message_input.press('Enter')
print('Pressed Enter key to submit')
button_enabled = True
except Exception as e:
print(f'Error pressing Enter key: {e}')
if submit_button:
try:
page.evaluate("""() => {
const button = document.querySelector('[data-testid="chat-input"] button[type="submit"]');
if (button) {
button.removeAttribute('disabled');
button.click();
return true;
}
return false;
}""")
print('Used JavaScript to force click submit button')
button_enabled = True
except Exception as e2:
print(f'JavaScript force click failed: {e2}')
if not button_enabled:
page.screenshot(path='test-results/conv_09_submit_failed.png')
print('Screenshot saved: conv_09_submit_failed.png')
raise RuntimeError('Could not submit message')
else:
submit_button.click()
print('Clicked submit button')
page.screenshot(path='test-results/conv_08_question_sent.png')
print('Screenshot saved: conv_08_question_sent.png')
print('Step 8: Waiting for agent response to README question...')
response_wait_time = 180
response_start_time = time.time()
while time.time() - response_start_time < response_wait_time:
elapsed = int(time.time() - response_start_time)
if elapsed % 30 == 0 and elapsed > 0:
page.screenshot(path=f'test-results/conv_response_wait_{elapsed}s.png')
print(
f'Screenshot saved: conv_response_wait_{elapsed}s.png (waiting {elapsed}s for response)'
)
try:
agent_messages = page.locator('[data-testid="agent-message"]').all()
if elapsed % 30 == 0:
print(f'Found {len(agent_messages)} agent messages')
for i, msg in enumerate(agent_messages):
try:
content = msg.text_content()
if content and len(content.strip()) > 10:
content_lower = content.lower()
import re
line_count_pattern = r'\b(\d{3})\b'
line_counts = re.findall(line_count_pattern, content)
if (
(
str(expected_line_count) in content
and 'readme' in content_lower
)
or (
'line' in content_lower
and 'readme' in content_lower
and any(
num in content
for num in ['183', str(expected_line_count)]
)
)
or (
'line' in content_lower
and 'readme' in content_lower
and line_counts
and any(100 <= int(num) <= 300 for num in line_counts)
)
):
print(
'β
Found agent response about README.md with line count!'
)
page.screenshot(
path='test-results/conv_09_agent_response.png'
)
print('Screenshot saved: conv_09_agent_response.png')
page.screenshot(path='test-results/conv_10_final_state.png')
print('Screenshot saved: conv_10_final_state.png')
print(
'β
Test completed successfully - agent provided correct README line count'
)
return
except Exception as e:
print(f'Error processing agent message {i}: {e}')
continue
except Exception as e:
print(f'Error checking for agent messages: {e}')
page.wait_for_timeout(5000)
print('β Did not find agent response with README line count within time limit')
page.screenshot(path='test-results/conv_09_agent_response.png')
print('Screenshot saved: conv_09_agent_response.png')
page.screenshot(path='test-results/conv_10_final_state.png')
print('Screenshot saved: conv_10_final_state.png')
raise AssertionError(
'Agent response did not include README line count within time limit'
)