🌐 AI搜索 & 代理 主页
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c59d266
Tests: run tests locally with selenium
timmywil Dec 29, 2023
ac4238a
Tests: add github workflow for browserstack
timmywil Jan 27, 2024
569f092
Tests: remove grunt, karma, testswarm, and playwright-webkit
timmywil Feb 10, 2024
c3c385b
Docs: add testing notes to CONTRIBUTING.md
timmywil Feb 14, 2024
a393b14
Build: upgrade all packages except sinon
timmywil Feb 14, 2024
e1ba019
Tests: upgrade QUnit to 2.20.1 and re-enable IE11
timmywil Feb 16, 2024
7c9cad3
Tests: make minor version optional in browser matching
timmywil Feb 16, 2024
ba5a847
Tests: enable non-concurrent BrowserStack workflow on the main branch
timmywil Feb 16, 2024
c029790
fixup! address codeql alerts relevant to this PR
timmywil Feb 16, 2024
ea880a4
fixup! sort browsers by device version last
timmywil Feb 22, 2024
59f3d64
fixup! downgrade husky and rollup and run build on Node 10
timmywil Feb 23, 2024
0a6c3c8
fixup! patch upgrades; make test commands consistent
timmywil Feb 23, 2024
0005d3a
fixup! remove location.origin; use absolute URLs instead
timmywil Feb 23, 2024
2733595
fixup! do a browserstack run
timmywil Feb 23, 2024
65493fa
fixup! split up comment
timmywil Feb 23, 2024
5c6351f
fixup! clarify comment
timmywil Feb 23, 2024
c97ae71
fixup! fix concurrency group name
timmywil Feb 23, 2024
63d848f
fixup! add empty line
timmywil Feb 23, 2024
53534a8
fixup! more PR feedback
timmywil Feb 23, 2024
808cd7c
fixup! we hit a hash collision; use our own hashing for all but moduleId
timmywil Feb 24, 2024
303cd14
fixup! add stop-workers warning
timmywil Feb 24, 2024
47d2a06
fixup! edit browser range
timmywil Feb 24, 2024
4b49601
fixup! call derez
timmywil Feb 24, 2024
d32595e
fixup! more PR feedback
timmywil Feb 24, 2024
95a18fe
fixup! fix local runId
timmywil Feb 24, 2024
abebb78
fixup! add back parentUrl, but use protocol/host; remove mentions of …
timmywil Feb 24, 2024
5253ab9
fixup! try enabling the crossorigin attr test in browserstack
timmywil Feb 24, 2024
280fb6e
fixup! use readable test names; still include each report ID
timmywil Feb 24, 2024
fe9c314
fixup! increase acknowledge timeout for the sake of iOS 15
timmywil Feb 24, 2024
71a09e9
Revert "fixup! try enabling the crossorigin attr test in browserstack"
timmywil Feb 24, 2024
8f6c44e
fixup! fix retries by passing original options
timmywil Feb 24, 2024
8c486f9
fixup! set browserstack branch back to main
timmywil Feb 24, 2024
3d9f544
fixup! use Object.create in listeners
timmywil Feb 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions .github/workflows/browserstack-dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Browserstack (Manual Dispatch)

on:
workflow_dispatch:
inputs:
module:
description: 'Module to test'
required: true
type: choice
options:
- 'basic'
- 'ajax'
- 'animation'
- 'attributes'
- 'callbacks'
- 'core'
- 'css'
- 'data'
- 'deferred'
- 'deprecated'
- 'dimensions'
- 'effects'
- 'event'
- 'manipulation'
- 'offset'
- 'queue'
- 'selector'
- 'serialize'
- 'support'
- 'traversing'
- 'tween'
browser:
description: 'Browser to test, in form of \"browser_[browserVersion | :device]_os_osVersion\"'
required: false
type: string
default: 'chrome__windows_11'

jobs:
test:
runs-on: ubuntu-latest
environment: browserstack
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20

- name: Install dependencies
run: npm ci

- name: Build jQuery
run: npm run build:all

- name: Pretest script
run: npm run pretest

- name: Run tests
run: npm run test:unit -- -v --browserstack ${{ inputs.browser }} -m ${{ inputs.module }}
64 changes: 64 additions & 0 deletions .github/workflows/browserstack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Browserstack

on:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
environment: browserstack
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
NODE_VERSION: 20.x
name: ${{ matrix.BROWSER }}
concurrency:
group: ${{ github.workflow }} ${{ matrix.BROWSER }}
strategy:
fail-fast: false
matrix:
BROWSER:
- 'IE_11'
- 'Safari_17'
- 'Safari_16'
- 'Chrome_120'
- 'Chrome_119'
- 'Edge_120'
- 'Edge_119'
- 'Firefox_121'
- 'Firefox_120'
- 'Firefox_115'
- '__iOS_17'
- '__iOS_16'
- '__iOS_15'
- 'Opera_106'
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ env.NODE_VERSION }}

- name: Cache
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-

- name: Install dependencies
run: npm install

- name: Build jQuery
run: npm run build:all

- name: Pretest script
run: npm run pretest

- name: Run tests
run: npm run test:unit -- -v --browserstack "${{ matrix.BROWSER }}" --retries 3
105 changes: 64 additions & 41 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Node

on:
pull_request:
Expand All @@ -9,77 +9,100 @@ permissions:
contents: read # to fetch code (actions/checkout)

jobs:
build:
build-and-test:
runs-on: ubuntu-latest
name: ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }})
strategy:
fail-fast: false
matrix:
# Node.js 10 is required by jQuery infra
# Do not remove 16.x until jsdom tests are re-enabled on newer Node.js versions.
NODE_VERSION: [10.x, 16.x, 18.x, 20.x]
NAME: ["Node"]
NODE_VERSION: [18.x, 20.x]
NPM_SCRIPT: ["test:browserless"]
include:
- NAME: "Browser tests: full build, Chrome, Firefox & WebKit"
NODE_VERSION: "18.x"
- NAME: "Node"
NODE_VERSION: "20.x"
NPM_SCRIPT: "lint"
- NAME: "Chrome/Firefox"
NODE_VERSION: "20.x"
NPM_SCRIPT: "test:browser"
BROWSERS: "ChromeHeadless,FirefoxHeadless,WebkitHeadless"
- NAME: "Browser tests: slim build, Chrome"
NODE_VERSION: "18.x"
- NAME: "Chrome"
NODE_VERSION: "20.x"
NPM_SCRIPT: "test:slim"
BROWSERS: "ChromeHeadless"
- NAME: "Browser tests: no-deprecated build, Chrome"
NODE_VERSION: "18.x"
- NAME: "Chrome"
NODE_VERSION: "20.x"
NPM_SCRIPT: "test:no-deprecated"
BROWSERS: "ChromeHeadless"
- NAME: "Browser tests: selector-native build, Chrome"
NODE_VERSION: "18.x"
- NAME: "Chrome"
NODE_VERSION: "20.x"
NPM_SCRIPT: "test:selector-native"
BROWSERS: "ChromeHeadless"
- NAME: "Browser tests: ES modules build, Chrome"
NODE_VERSION: "18.x"
NPM_SCRIPT: "test:esmodules"
BROWSERS: "ChromeHeadless"
- NAME: "Browser tests: full build, Firefox ESR"
NODE_VERSION: "18.x"
NPM_SCRIPT: "test:browser"
BROWSERS: "FirefoxHeadless"
- NAME: "Chrome"
NODE_VERSION: "20.x"
NPM_SCRIPT: "test:esm"
- NAME: "Firefox ESR"
NODE_VERSION: "20.x"
NPM_SCRIPT: "test:firefox"
- NAME: "Node 10 Build"
NODE_VERSION: "10.x"
NPM_SCRIPT: "build:main"
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Use Node.js ${{ matrix.NODE_VERSION }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ matrix.NODE_VERSION }}

- name: Cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-npm-lock-

- name: Use Node.js ${{ matrix.NODE_VERSION }}
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
node-version: ${{ matrix.NODE_VERSION }}

- name: Install firefox ESR
run: |
export FIREFOX_SOURCE_URL='https://download.mozilla.org/?product=firefox-esr-latest&lang=en-US&os=linux64'
export FIREFOX_SOURCE_URL='https://download.mozilla.org/?product=firefox-esr-latest-ssl&lang=en-US&os=linux64'
wget --no-verbose $FIREFOX_SOURCE_URL -O - | tar -jx -C ${HOME}
if: contains(matrix.NAME, 'Firefox ESR')

- name: Install dependencies
run: npm install

- name: Install Playwright dependencies
run: npx playwright-webkit install-deps
if: matrix.NPM_SCRIPT == 'test:browser' && contains(matrix.BROWSERS, 'WebkitHeadless')

- name: Lint code
run: npm run build:all && npm run lint
if: matrix.NODE_VERSION == '18.x'
- name: Build All for Linting
run: npm run build:all
if: contains(matrix.NPM_SCRIPT, 'lint')

- name: Run tests
env:
BROWSERS: ${{ matrix.BROWSERS }}
run: |
export PATH=${HOME}/firefox:$PATH
export FIREFOX_BIN=${HOME}/firefox/firefox
npm run ${{ matrix.NPM_SCRIPT }}

safari:
runs-on: macos-latest
env:
NODE_VERSION: 20.x
name: test:safari - Safari
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ env.NODE_VERSION }}

- name: Cache
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-

- name: Install dependencies
run: npm install

- name: Run tests
run: npm run test:safari
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ npm-debug.log*

/test/data/core/jquery-iterability-transpiled.js
/test/data/qunit-fixture.js

# Ignore BrowserStack files
local.log
browserstack.err
57 changes: 46 additions & 11 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,6 @@ We *love* when people contribute back to the project by patching the bugs they f

Create a fork of the jQuery repo on github at https://github.com/jquery/jquery

Change directory to your web root directory, whatever that might be:

```bash
$ cd /path/to/your/www/root/
```

Clone your jQuery fork to work locally

```bash
Expand All @@ -100,29 +94,47 @@ Get in the habit of pulling in the "upstream" main to stay up to date as jQuery
$ git pull upstream main
```

Run the build script
Install the necessary dependencies

```bash
$ npm run build
$ npm install
```

Now open the jQuery test suite in a browser at http://localhost/test. If there is a port, be sure to include it.
Build all jQuery files

Success! You just built and tested jQuery!
```bash
$ npm run build:all
```

Start a test server

```bash
$ npm run test:server
```

Now open the jQuery test suite in a browser at http://localhost:3000/test/.

Success! You just built and tested jQuery!

### Test Suite Tips...

During the process of writing your patch, you will run the test suite MANY times. You can speed up the process by narrowing the running test suite down to the module you are testing by either double clicking the title of the test or appending it to the url. The following examples assume you're working on a local repo, hosted on your localhost server.

Example:

http://localhost/test/?module=css
http://localhost:3000/test/?module=css

This will only run the "css" module tests. This will significantly speed up your development and debugging.

**ALWAYS RUN THE FULL SUITE BEFORE COMMITTING AND PUSHING A PATCH!**

#### Change the test server port

The default port for the test server is 3000. You can change the port by setting the `PORT` environment variable.

```bash
$ PORT=3001 npm run test:server
```

#### Loading changes on the test page

Expand All @@ -136,6 +148,29 @@ Alternatively, you can **load tests as ECMAScript modules** to avoid the need fo

Click "Load as modules" after loading the test page.

#### Running the test suite from the command line

You can also run the test suite from the command line.

First, prepare the tests:

```bash
$ npm run pretest
```

Make sure jQuery is built (`npm run build:all`) and run the tests:

```bash
$ npm run test:unit
```

This will run each module in its own browser instance and report the results in the terminal.

View the full help for the test suite for more info on running the tests from the command line:

```bash
$ npm run test:unit -- --help
```

### Repo organization

Expand Down
Loading