Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: giggio/node-chromedriver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 122.0.2
Choose a base ref
...
head repository: giggio/node-chromedriver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 122.0.3
Choose a head ref
  • 2 commits
  • 9 files changed
  • 2 contributors

Commits on Feb 22, 2024

  1. Add tests and report on github actions

    giggio committed Feb 22, 2024
    Copy the full SHA
    c91fa59 View commit details

Commits on Feb 23, 2024

  1. Bump version to 122.0.3

    giggio committed Feb 23, 2024
    Copy the full SHA
    91bf14b View commit details
Showing with 4,472 additions and 1,101 deletions.
  1. +9 −1 .eslintrc.json
  2. +30 −0 .github/workflows/build.yml
  3. +2 −1 .gitignore
  4. +2 −0 .npmignore
  5. +395 −386 install.js
  6. +3 −3 lib/chromedriver.js
  7. +3,948 −709 package-lock.json
  8. +6 −1 package.json
  9. +77 −0 tests/install.test.js
10 changes: 9 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -25,5 +25,13 @@
"no-console": "off",
"no-var": "error",
"prefer-const": "error"
}
},
"overrides": [
{
"files": ["tests/**/*"],
"env": {
"jest": true
}
}
]
}
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -31,6 +31,10 @@ on:

jobs:
build:
permissions:
actions: write
checks: write
pull-requests: write
name: Build amd64
runs-on: ${{ matrix.runner }}
strategy:
@@ -65,6 +69,32 @@ jobs:
- run: ./test-driver.sh
name: Verify install
shell: bash
- run: npm run test:ci
name: Run tests
continue-on-error: true
- name: Publish Report
uses: turing85/publish-report@v1
if: ${{ always() }}
with:
cancel-workflow-on-error: false
comment-header: my-comment-header
comment-message-success: |
{0} passed!
{1} tests were successful, {2} tests failed, {3} test were skipped.
The report can be found [here]({4}).
comment-message-failure: |
{0} failed!
{1} tests were successful, {2} tests failed, {3} test were skipped.
The report can be found [here]({4}).
report-fail-on-error: true
report-name: Tests ${{ matrix.runner }}-${{ matrix.node }}
report-path: junit.xml
report-reporter: jest-junit

build_arm64:
name: Build arm64
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -2,4 +2,5 @@ node_modules
lib/chromedriver
tmp
npm-debug.log
*.tgz
*.tgz
junit.xml
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -16,3 +16,5 @@ azure-pipelines.yml
.github
.travis.yml
tsconfig.json
tests
junit.xml
781 changes: 395 additions & 386 deletions install.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib/chromedriver.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const fs = require('fs');
const path = require('path');
const fs = require('node:fs');
const path = require('node:path');
const tcpPortUsed = require('tcp-port-used');
function getPortFromArgs(args) {
let port = 9515;
@@ -15,7 +15,7 @@ function getPortFromArgs(args) {
}
process.env.PATH = path.join(__dirname, 'chromedriver') + path.delimiter + process.env.PATH;
const crpath = process.platform === 'win32' ? path.join(__dirname, 'chromedriver', 'chromedriver.exe') : path.join(__dirname, 'chromedriver', 'chromedriver');
const version = '122.0.6261.57';
const version = '122.0.6261.69';
let defaultInstance = null;

function start(args, returnPromise) {
4,657 changes: 3,948 additions & 709 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chromedriver",
"version": "122.0.2",
"version": "122.0.3",
"keywords": [
"chromedriver",
"selenium"
@@ -25,6 +25,8 @@
"install": "node install.js",
"update-chromedriver": "node update.js",
"typecheck": "tsc",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"lint": "eslint"
},
"dependencies": {
@@ -37,7 +39,10 @@
"tcp-port-used": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"semver": "^7.6.0",
"typescript": "^5.3.3"
},
77 changes: 77 additions & 0 deletions tests/install.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
const process = require('node:process');
const console = require('node:console');

describe('install', () => {
const mockProcess = {
...process,
env: {
NODE_ENV: 'test'
},
exit: jest.fn(),
};
const mockConsole = {
...console,
error: jest.fn(),
};
const mockInstall = {
isEmulatedRosettaEnvironment: false
};
jest.mock('node:process', () => mockProcess);
jest.mock('node:console', () => mockConsole);
beforeAll(() => {
});
/** @type {import('../install')} */
let installer;
beforeEach(() => {
const Installer = require('../install');
installer = new Installer();
installer.isEmulatedRosettaEnvironment = jest.fn(() => mockInstall.isEmulatedRosettaEnvironment);
});
afterEach(() => jest.resetAllMocks());
afterAll(() => jest.restoreAllMocks());
it('platform linux not x64 fails', () => {
mockProcess.platform = 'linux';
mockProcess.arch = 'ppc';
expect(installer.getPlatform('120.0.0')).toBeUndefined();
expect(mockProcess.exit.mock.calls).toHaveLength(2);
expect(mockConsole.error.mock.calls).toHaveLength(2);
});
it('fails with unexpected platform', () => {
mockProcess.platform = 'android';
mockProcess.arch = 'arm64';
expect(installer.getPlatform('120.0.0')).toBeUndefined();
expect(mockProcess.exit.mock.calls).toHaveLength(1);
expect(mockConsole.error.mock.calls).toHaveLength(1);
});
it.each([
['win32', 'x64', '120.0.0', 'win64'],
['win32', 'x86', '114.0.0', 'win32'],
['win32', 'x64', '114.0.0', 'win32'],
['linux', 'arm64', '114.0.0', 'linux64'],
])('finds platform for %s/%s, version %s is %s', (/** @type {NodeJS.Platform} */ platform, /** @type {NodeJS.Architecture} */ arch, version, result) => {
mockProcess.platform = platform;
mockProcess.arch = arch;
expect(installer.getPlatform(version)).toBe(result);
expect(mockProcess.exit.mock.calls).toHaveLength(0);
expect(mockConsole.error.mock.calls).toHaveLength(0);
});
it.each([
['darwin', 'x64', '116.0.0', false, 'mac-x64'],
['darwin', 'x64', '114.0.0', false, 'mac64'],
['darwin', 'x64', '105.0.0', true, 'mac64_m1'],
['darwin', 'x64', '116.0.0', true, 'mac-arm64'],
['darwin', 'x64', '114.0.0', true, 'mac_arm64'],
['freebsd', 'arm64', '116.0.0', false, 'mac-arm64'],
['darwin', 'arm64', '116.0.0', false, 'mac-arm64'],
['darwin', 'arm64', '114.0.0', false, 'mac_arm64'],
['darwin', 'arm64', '105.0.0', false, 'mac64_m1'],
])('finds platform for Mac %s/%s, version %s, emulated rosetta is %s is %s', (/** @type {NodeJS.Platform} */ platform, /** @type {NodeJS.Architecture} */ arch, version, isEmulatedRosettaEnvironment, result) => {
mockProcess.platform = platform;
mockProcess.arch = arch;
mockInstall.isEmulatedRosettaEnvironment = isEmulatedRosettaEnvironment;
expect(installer.getPlatform(version)).toBe(result);
expect(mockProcess.exit.mock.calls).toHaveLength(0);
expect(mockConsole.error.mock.calls).toHaveLength(0);
});

});