|
1 | 1 | import { expect, test } from '@jupyterlab/galata';
|
| 2 | +import path from 'path'; |
| 3 | +import fs from 'fs'; |
| 4 | +import os from 'os'; |
2 | 5 |
|
3 | 6 | test.use({
|
4 | 7 | autoGoto: false,
|
@@ -66,6 +69,13 @@ const rootMyMemFs = {
|
66 | 69 | ino: 49648960,
|
67 | 70 | mode: 33188
|
68 | 71 | },
|
| 72 | + { |
| 73 | + name: '/mymemoryfs/myfile2.txt', |
| 74 | + type: 'file', |
| 75 | + size: 128, |
| 76 | + ino: 49638760, |
| 77 | + mode: 33188 |
| 78 | + }, |
69 | 79 | {
|
70 | 80 | name: '/mymemoryfs/otherdocs',
|
71 | 81 | type: 'directory',
|
@@ -174,7 +184,7 @@ test('test interacting with a filesystem', async ({ page }) => {
|
174 | 184 | for (const element of elements) {
|
175 | 185 | console.log(await element.evaluate(el => el.textContent));
|
176 | 186 | }
|
177 |
| - expect(countTreeItems).toEqual(3); |
| 187 | + expect(countTreeItems).toEqual(4); |
178 | 188 | });
|
179 | 189 |
|
180 | 190 | test('test copy path', async ({ page }) => {
|
@@ -316,3 +326,256 @@ test('copy open with code block with active notebook cell', async ({
|
316 | 326 | expect(content?.includes(cellText));
|
317 | 327 | expect(content?.includes(copyCodeBlock));
|
318 | 328 | });
|
| 329 | + |
| 330 | +test('upload file from the Jupyterlab file browser', async ({ page }) => { |
| 331 | + page.on('console', logMsg => console.log('[BROWSER OUTPUT] ', logMsg.text())); |
| 332 | + const request_url = |
| 333 | + 'http://localhost:8888/jupyter_fsspec/files?action=write&key=mymem'; |
| 334 | + const response_body = { |
| 335 | + status: 'success', |
| 336 | + desctiption: 'Uploaded file' |
| 337 | + }; |
| 338 | + |
| 339 | + await page.route(request_url + '**', route => { |
| 340 | + route.fulfill({ |
| 341 | + status: 200, |
| 342 | + contentType: 'application/json', |
| 343 | + body: JSON.stringify(response_body) |
| 344 | + }); |
| 345 | + }); |
| 346 | + |
| 347 | + await page.goto(); |
| 348 | + await page.getByText('FSSpec', { exact: true }).click(); |
| 349 | + await page.locator('.jfss-fsitem-root').click(); |
| 350 | + |
| 351 | + // open a notebook |
| 352 | + await page.notebook.createNew(); |
| 353 | + await page.waitForTimeout(1000); |
| 354 | + await page |
| 355 | + .getByRole('button', { name: 'Save and create checkpoint' }) |
| 356 | + .click(); |
| 357 | + await page.getByRole('button', { name: 'Rename' }).click(); |
| 358 | + |
| 359 | + // right-click on Jupyterlab filebrowser item |
| 360 | + await page.getByRole('listitem', { name: 'Name: Untitled.ipynb' }).click({ |
| 361 | + button: 'right' |
| 362 | + }); |
| 363 | + await page.getByText('Set as fsspec upload target').click(); |
| 364 | + |
| 365 | + const file_locator = page |
| 366 | + .locator('jp-tree-view') |
| 367 | + .locator('jp-tree-item') |
| 368 | + .nth(1); |
| 369 | + await file_locator.highlight(); |
| 370 | + await file_locator.click({ button: 'right' }); |
| 371 | + |
| 372 | + const requestPromise = page.waitForRequest( |
| 373 | + request => |
| 374 | + request.url().includes(request_url) && request.method() === 'POST' |
| 375 | + ); |
| 376 | + |
| 377 | + // Wait for pop up |
| 378 | + const command = 'Upload to path (from integrated file browser)'; |
| 379 | + await expect.soft(page.getByText(command)).toBeVisible(); |
| 380 | + await page.getByText(command).highlight(); |
| 381 | + await page.getByText(command).click(); |
| 382 | + |
| 383 | + // input file name and click `Ok` |
| 384 | + try { |
| 385 | + await page.waitForSelector('.jp-Dialog', { timeout: 3000 }); |
| 386 | + await page |
| 387 | + .locator('.jfss-file-upload-context-popup input') |
| 388 | + .fill('test.txt'); |
| 389 | + await page.getByRole('button', { name: 'Ok' }).click(); |
| 390 | + } catch (error) { |
| 391 | + console.log('Dialog not found, skipping action'); |
| 392 | + } |
| 393 | + |
| 394 | + // file size information will not be upadated to match the notebook size |
| 395 | + // as that information is currenly mocked. |
| 396 | + |
| 397 | + // TODO: ensure HTTP request is made with correct parameters |
| 398 | + const request = await requestPromise; |
| 399 | + expect.soft(request.method()).toBe('POST'); |
| 400 | + expect.soft(request.url()).toContain(request_url); |
| 401 | + |
| 402 | + const response = await request.response(); |
| 403 | + |
| 404 | + const jsonResponse = await response?.json(); |
| 405 | + expect.soft(jsonResponse).toEqual(response_body); |
| 406 | +}); |
| 407 | + |
| 408 | +test('upload file from browser picker', async ({ page }) => { |
| 409 | + const request_url = |
| 410 | + 'http://localhost:8888/jupyter_fsspec/files?action=write&key=mymem'; |
| 411 | + const response_body = { |
| 412 | + status: 'success', |
| 413 | + desctiption: 'uploaded file' |
| 414 | + }; |
| 415 | + |
| 416 | + await page.route(request_url + '**', route => { |
| 417 | + route.fulfill({ |
| 418 | + status: 200, |
| 419 | + contentType: 'application/json', |
| 420 | + body: JSON.stringify(response_body) |
| 421 | + }); |
| 422 | + }); |
| 423 | + |
| 424 | + await page.goto(); |
| 425 | + await page.getByText('FSSpec', { exact: true }).click(); |
| 426 | + await page.locator('.jfss-fsitem-root').click(); |
| 427 | + |
| 428 | + // open a notebook |
| 429 | + await page.notebook.createNew(); |
| 430 | + await page.waitForTimeout(1000); |
| 431 | + await page |
| 432 | + .getByRole('button', { name: 'Save and create checkpoint' }) |
| 433 | + .click(); |
| 434 | + await page.getByRole('button', { name: 'Rename' }).click(); |
| 435 | + |
| 436 | + page.on('request', request => |
| 437 | + console.log('>>', request.method(), request.url()) |
| 438 | + ); |
| 439 | + page.on('response', async response => |
| 440 | + console.log('<<', response.status(), response.url(), '<<', response.text()) |
| 441 | + ); |
| 442 | + |
| 443 | + // right-click on browser picker item |
| 444 | + const file_locator = page |
| 445 | + .locator('jp-tree-view') |
| 446 | + .locator('jp-tree-item') |
| 447 | + .nth(2); |
| 448 | + await file_locator.highlight(); |
| 449 | + await file_locator.click({ button: 'right' }); |
| 450 | + |
| 451 | + // Wait for file picker dialog |
| 452 | + const filePickerPromise = page.waitForEvent('filechooser'); |
| 453 | + |
| 454 | + // Wait for pop up |
| 455 | + const command = 'Upload to path (Browser file picker)'; |
| 456 | + await expect.soft(page.getByText(command)).toBeVisible(); |
| 457 | + await page.getByText(command).highlight(); |
| 458 | + await page.getByText(command).click(); |
| 459 | + |
| 460 | + await filePickerPromise; |
| 461 | + |
| 462 | + const tmpFilePath = path.join(os.tmpdir(), 'test-file.txt'); |
| 463 | + fs.writeFileSync(tmpFilePath, 'This is a test file for Playwright.'); |
| 464 | + await page.setInputFiles('input[type="file"]', tmpFilePath); |
| 465 | + |
| 466 | + fs.unlinkSync(tmpFilePath); |
| 467 | + |
| 468 | + const requestPromise = page.waitForRequest( |
| 469 | + request => |
| 470 | + request.url().includes(request_url) && request.method() === 'POST' |
| 471 | + ); |
| 472 | + |
| 473 | + // TODO: ensure HTTP request is made with correct parameters |
| 474 | + const request = await requestPromise; |
| 475 | + expect.soft(request.method()).toBe('POST'); |
| 476 | + expect.soft(request.url()).toContain(request_url); |
| 477 | + |
| 478 | + const response = await request.response(); |
| 479 | + expect.soft(response?.status()).toBe(200); |
| 480 | + const jsonResponse = await response?.json(); |
| 481 | + expect.soft(jsonResponse).toEqual(response_body); |
| 482 | +}); |
| 483 | + |
| 484 | +test('upload file from helper', async ({ page }) => { |
| 485 | + page.on('console', logMsg => console.log('[BROWSER OUTPUT] ', logMsg.text())); |
| 486 | + const request_url = |
| 487 | + 'http://localhost:8888/jupyter_fsspec/files/transfer?action=upload'; |
| 488 | + const response_body = { |
| 489 | + status: 'success', |
| 490 | + desctiption: 'Uploaded file' |
| 491 | + }; |
| 492 | + |
| 493 | + await page.route(request_url + '**', route => { |
| 494 | + route.fulfill({ |
| 495 | + status: 200, |
| 496 | + contentType: 'application/json', |
| 497 | + body: JSON.stringify(response_body) |
| 498 | + }); |
| 499 | + }); |
| 500 | + |
| 501 | + await page.goto(); |
| 502 | + await page.getByText('FSSpec', { exact: true }).click(); |
| 503 | + await page.locator('.jfss-fsitem-root').click(); |
| 504 | + |
| 505 | + // open a notebook |
| 506 | + await page.notebook.createNew(); |
| 507 | + await page.waitForTimeout(1000); |
| 508 | + |
| 509 | + const quote_mark = '"'; |
| 510 | + const new_bytes = `${quote_mark}Hello there from playwright${quote_mark}.encode()`; |
| 511 | + await page.notebook.addCell( |
| 512 | + 'code', |
| 513 | + `from jupyter_fsspec import helper\nhelper.set_user_data(${new_bytes})` |
| 514 | + ); |
| 515 | + await page.notebook.runCell(1); |
| 516 | + |
| 517 | + await page |
| 518 | + .getByRole('button', { name: 'Save and create checkpoint' }) |
| 519 | + .click(); |
| 520 | + await page.getByRole('button', { name: 'Rename' }).click(); |
| 521 | + |
| 522 | + const file_locator = page |
| 523 | + .locator('jp-tree-view') |
| 524 | + .locator('jp-tree-item') |
| 525 | + .nth(1); |
| 526 | + await file_locator.highlight(); |
| 527 | + await file_locator.click({ button: 'right' }); |
| 528 | + |
| 529 | + const requestPromise = page.waitForRequest( |
| 530 | + request => |
| 531 | + request.url().includes(request_url) && request.method() === 'POST' |
| 532 | + ); |
| 533 | + |
| 534 | + // Wait for pop up |
| 535 | + const command = 'Upload to path (helper.user_data)'; |
| 536 | + await expect.soft(page.getByText(command)).toBeVisible(); |
| 537 | + await page.getByText(command).highlight(); |
| 538 | + await page.getByText(command).click(); |
| 539 | + |
| 540 | + // input file name and click `Ok` |
| 541 | + try { |
| 542 | + await page.waitForSelector('.jp-Dialog', { timeout: 3000 }); |
| 543 | + await page |
| 544 | + .locator('.jfss-file-upload-context-popup input') |
| 545 | + .fill('test.txt'); |
| 546 | + await page.getByRole('button', { name: 'Ok' }).click(); |
| 547 | + } catch (error) { |
| 548 | + console.log('Dialog not found, skipping action'); |
| 549 | + } |
| 550 | + |
| 551 | + // TODO: ensure HTTP request is made with correct parameters |
| 552 | + const request = await requestPromise; |
| 553 | + expect.soft(request.method()).toBe('POST'); |
| 554 | + expect.soft(request.url()).toContain(request_url); |
| 555 | + |
| 556 | + const response = await request.response(); |
| 557 | + expect.soft(response?.status()).toBe(200); |
| 558 | + const jsonResponse = await response?.json(); |
| 559 | + expect.soft(jsonResponse).toEqual(response_body); |
| 560 | +}); |
| 561 | + |
| 562 | +test('verify option `send bytes to helper` is present', async ({ page }) => { |
| 563 | + page.on('console', logMsg => console.log('[BROWSER OUTPUT] ', logMsg.text())); |
| 564 | + |
| 565 | + await page.goto(); |
| 566 | + await page.getByText('FSSpec', { exact: true }).click(); |
| 567 | + await page.locator('.jfss-fsitem-root').click(); |
| 568 | + |
| 569 | + // select file to send to helper |
| 570 | + const file_locator = page |
| 571 | + .locator('jp-tree-view') |
| 572 | + .locator('jp-tree-item') |
| 573 | + .nth(2); |
| 574 | + await file_locator.highlight(); |
| 575 | + await file_locator.click({ button: 'right' }); |
| 576 | + |
| 577 | + // Wait for pop up |
| 578 | + const command = 'Send bytes to helper'; |
| 579 | + await expect.soft(page.getByText(command)).toBeVisible(); |
| 580 | + await page.getByText(command).click(); |
| 581 | +}); |
0 commit comments