Skip to content

Commit

Permalink
issue-485: Avoid to stuck on invalid corrupted socket which causes we…
Browse files Browse the repository at this point in the history
…bdriver unknown error

Signed-off-by: Dominik Jelinek <[email protected]>
  • Loading branch information
djelinek committed Oct 17, 2023
1 parent d0b325f commit 3003bed
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/insiders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ jobs:
if: failure()
with:
name: screenshots-${{ matrix.os }}
path: ${{ github.workspace }}/test/**/screenshots/*.png
path: ${{ runner.temp }}/test-resources/screenshots/*.png
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
npm run test
- name: Run Tests (linux)
env:
TEST_RESOURCES: ${{ runner.temp }}/test-resources
if: matrix.os == 'ubuntu-latest'
run: |
xvfb-run --auto-servernum --server-args='-screen 0 1920x1080x24' npm run test
Expand All @@ -48,7 +50,7 @@ jobs:
if: failure()
with:
name: screenshots-${{ matrix.os }}-${{ matrix.version }}
path: ${{ github.workspace }}/test/**/screenshots/*.png
path: ${{env.TEST_RESOURCES}}/**/screenshots/*.png

check:
if: always()
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
out
node_modules
test-resources
./.vscode
docs
resources/api-handler.vsix
Expand Down
3 changes: 2 additions & 1 deletion src/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { WebDriver, Builder, until, initPageObjects, logging, By } from 'monaco-
import { Options, ServiceBuilder } from 'selenium-webdriver/chrome';
import { getLocatorsPath } from 'vscode-extension-tester-locators';
import { CodeUtil, ReleaseQuality } from './util/codeUtil';
import { DEFAULT_STORAGE_FOLDER } from './extester';

export class VSBrowser {
static readonly baseVersion = '1.37.0';
Expand All @@ -21,7 +22,7 @@ export class VSBrowser {
private static _instance: VSBrowser;

constructor(codeVersion: string, releaseType: ReleaseQuality, customSettings: Object = {}, logLevel: logging.Level = logging.Level.INFO) {
this.storagePath = process.env.TEST_RESOURCES ? process.env.TEST_RESOURCES : path.resolve('test-resources');
this.storagePath = process.env.TEST_RESOURCES ? process.env.TEST_RESOURCES : path.resolve(DEFAULT_STORAGE_FOLDER);
this.extensionsFolder = process.env.EXTENSIONS_FOLDER ? process.env.EXTENSIONS_FOLDER : undefined;
this.customSettings = customSettings;
this.codeVersion = codeVersion;
Expand Down
5 changes: 4 additions & 1 deletion src/extester.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { CodeUtil, DEFAULT_RUN_OPTIONS, ReleaseQuality, RunOptions } from './uti
import { DriverUtil } from './util/driverUtil';
import * as fs from 'fs-extra';
import * as path from 'path';
import * as os from 'os';
import { URL } from 'url';

export { ReleaseQuality }
Expand All @@ -26,6 +27,8 @@ export const DEFAULT_SETUP_OPTIONS = {
installDependencies: false
}

export const DEFAULT_STORAGE_FOLDER = path.join(os.tmpdir(), 'test-resources');

export const VSCODE_VERSION_MIN = '1.81.1';
export const VSCODE_VERSION_MAX = '1.83.1';

Expand All @@ -42,7 +45,7 @@ export class ExTester {
private code: CodeUtil;
private chrome: DriverUtil;

constructor(storageFolder: string = 'test-resources', releaseType: ReleaseQuality = ReleaseQuality.Stable, extensionsDir?: string) {
constructor(storageFolder: string = DEFAULT_STORAGE_FOLDER, releaseType: ReleaseQuality = ReleaseQuality.Stable, extensionsDir?: string) {
this.code = new CodeUtil(storageFolder, releaseType, extensionsDir);
this.chrome = new DriverUtil(storageFolder);

Expand Down
3 changes: 2 additions & 1 deletion src/util/codeUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { VSRunner } from "../suite/runner";
import { Unpack } from "./unpack";
import { logging } from "selenium-webdriver";
import { Download } from './download';
import { DEFAULT_STORAGE_FOLDER } from '../extester';

export enum ReleaseQuality {
Stable = 'stable',
Expand Down Expand Up @@ -60,7 +61,7 @@ export class CodeUtil {
* @param folder Path to folder where all the artifacts will be stored.
* @param extensionsFolder Path to use as extensions directory by VSCode
*/
constructor(folder: string = 'test-resources', type: ReleaseQuality = ReleaseQuality.Stable, extensionsFolder?: string) {
constructor(folder: string = DEFAULT_STORAGE_FOLDER, type: ReleaseQuality = ReleaseQuality.Stable, extensionsFolder?: string) {
this.availableVersions = [];
this.downloadPlatform = this.getPlatform();
this.downloadFolder = path.resolve(folder);
Expand Down
3 changes: 2 additions & 1 deletion src/util/driverUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import * as path from 'path';
import * as child_process from 'child_process';
import { Unpack } from './unpack';
import { Download } from './download';
import { DEFAULT_STORAGE_FOLDER } from '../extester';

/**
* Handles version checks and download of ChromeDriver
Expand All @@ -16,7 +17,7 @@ export class DriverUtil {
* Create an instance of chrome driver handler
* @param folder path to a folder to store all artifacts
*/
constructor(folder: string = 'test-resources') {
constructor(folder: string = DEFAULT_STORAGE_FOLDER) {
this.downloadFolder = path.resolve(folder);
}

Expand Down
1 change: 0 additions & 1 deletion test/test-project/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ out
node_modules
.vscode-test/
*.vsix
test-resources/
test-extensions/
package-lock.json
1 change: 0 additions & 1 deletion test/test-project/.vscodeignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
src/**
test-resources/**
test-extensions/**
2 changes: 1 addition & 1 deletion test/test-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
"lint": "eslint src --ext .ts",
"watch": "tsc -watch -p ./",
"cb-init": "echo hello_ExTester | clipboard",
"ui-test": "npm run cb-init && extest setup-and-run './out/src/test/cli/order-3-test.js' './out/src/test/cli/order-2-test.js' './out/src/test/cli/order-1-test.js' './out/src/test/**/*-test.js' './out/src/test/system/clipboard.test.js' -u -i -r . -e ./test-extensions"
"ui-test": "npm run cb-init && extest setup-and-run './out/src/test/cli/order-3-test.js' './out/src/test/cli/order-2-test.js' './out/src/test/cli/order-1-test.js' './out/src/test/**/bottomBar*-test.js' './out/src/test/system/clipboard.test.js' -u -i -r . -e ./test-extensions"
},
"devDependencies": {
"@types/chai": "^4.3.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('BottomBarPanel', function () {

it('can be toggled open', async function () {
await panel.toggle(true);
expect(await panel.isDisplayed()).is.true;
expect(await panel.isDisplayed()).is.false;
});

it('can be toggled closed', async function () {
Expand Down
2 changes: 1 addition & 1 deletion test/test-project/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"resolveJsonModule": true,
"esModuleInterop": true
},
"exclude": ["node_modules", ".vscode-test", "test-resources", "resources"]
"exclude": ["node_modules", ".vscode-test", "resources"]
}
5 changes: 1 addition & 4 deletions test/test-project/tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@
"semicolon": [true, "always"],
"triple-equals": true
},
"defaultSeverity": "warning",
"linterOptions": {
"exclude": ["test-resources"]
}
"defaultSeverity": "warning"
}
2 changes: 1 addition & 1 deletion wiki/Taking Screenshots.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Screenshot can be captured by calling:
VSBrowser.instance.takeScreenshot(basename: string)
```

Captured screenshots will be saved in *screenshots* folder which can be found in *test-resources* folder.
Captured screenshots will be saved in *screenshots* folder which can be found in a test storage folder (`$TMPDIR/test-resources` by default).
File name will be generated from given basename in the following format: `${basename}.png`.

#### Mocha integration
Expand Down
2 changes: 1 addition & 1 deletion wiki/Test-Setup.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The Extension Tester offers both CLI and API to perform all the setup actions. That way you can simply integrate it into your npm scripts, or just call it from your code if that is more preferable.

## Using the CLI
All the CLI actions are available with the command ```extest``` which is available to your npm scripts once the package is installed. The default storage folder for all test resources is ```test-resources``` in the extension's root. To avoid build problems, make sure to exclude it from your ```tsconfig``` and ```vsce```.
All the CLI actions are available with the command ```extest``` which is available to your npm scripts once the package is installed. The default storage folder for all test resources is a ```$TMPDIR/test-resources```.

#### Download VS Code
If you wish to manually download VS Code of a given version
Expand Down

0 comments on commit 3003bed

Please sign in to comment.