mirror of
https://github.com/kou029w/intro-to-software-testing.git
synced 2025-02-03 07:38:43 +00:00
Compare commits
2 commits
c758212a37
...
32cd08f009
Author | SHA1 | Date | |
---|---|---|---|
32cd08f009 | |||
5e6c0fad4e |
7 changed files with 2127 additions and 1350 deletions
11
.github/workflows/github-pages.yml
vendored
11
.github/workflows/github-pages.yml
vendored
|
@ -1,7 +1,8 @@
|
||||||
name: github-pages
|
name: github-pages
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches:
|
||||||
|
- main
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
permissions:
|
permissions:
|
||||||
|
@ -12,11 +13,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with: { node-version: lts/*, cache: yarn }
|
with:
|
||||||
|
node-version: "lts/*"
|
||||||
|
cache: npm
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
yarn install
|
npm ci
|
||||||
yarn build
|
npm run build
|
||||||
- uses: actions/upload-pages-artifact@v3
|
- uses: actions/upload-pages-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: pages
|
path: pages
|
||||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,2 @@
|
||||||
/pages/
|
/pages/
|
||||||
/node_modules/
|
node_modules
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
overrides:
|
|
||||||
- files: "*.md"
|
|
||||||
options:
|
|
||||||
parser: markdown-nocjsp
|
|
63
README.md
63
README.md
|
@ -145,32 +145,38 @@ WebDINO Japan シニアエンジニア
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## テストピラミッド
|
## 自動テストが持つべき性質
|
||||||
|
|
||||||
コストに応じた適切な粒度と規模を保つテスト戦略
|
- Independent/Isolated(独立している)
|
||||||
|
- Fast(高速である)
|
||||||
|
|
||||||
ユニットテストのような小さなテストを大規模に行い、画面の見た目・使いやすさのようなコストのかかるテストはできるだけ小規模に保つ
|
<!-- _footer: 参考文献: [保守しやすく変化に強いソフトウェアを支える柱 自動テストとテスト駆動開発、その全体像 ~Software Design 2022年3月号「そろそろはじめるテスト駆動開発」より | gihyo.jp](https://gihyo.jp/article/2024/01/automated-test-and-tdd) -->
|
||||||
|
|
||||||
![bg fit right:45%](https://i.gyazo.com/ed022666a04104fdb0382c9643e88ab7.png)
|
---
|
||||||
|
|
||||||
<!-- _footer: 参考文献: Mike Cohn (2009) "Succeeding With Agile" -->
|
## 自動テストの理想的な状態
|
||||||
|
|
||||||
|
- 誰が書くか … テスト対象のコードを書いた本人が
|
||||||
|
- いつ書くか … テスト対象のコードを書くとき
|
||||||
|
- どのくらい書くか … ムリなく・ムダなく・ムラなく
|
||||||
|
- どのくらいの頻度で実行するか … すぐに
|
||||||
|
|
||||||
|
<!-- _footer: 参考文献: [保守しやすく変化に強いソフトウェアを支える柱 自動テストとテスト駆動開発、その全体像 ~Software Design 2022年3月号「そろそろはじめるテスト駆動開発」より | gihyo.jp](https://gihyo.jp/article/2024/01/automated-test-and-tdd) -->
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## たとえば
|
## たとえば
|
||||||
|
|
||||||
最初に、静的コード解析や静的型解析などゼロコストで始められるものを行う
|
静的コード解析や静的型解析などゼロコストで始められるものを行う
|
||||||
|
|
||||||
- ツール: ESLintとTypeScript
|
- ESLint
|
||||||
- プラットフォーム: GitHub Actions
|
- TypeScript
|
||||||
|
|
||||||
基本的には、ユニットテストなど低コストなテストを行う
|
自動実行環境やテスティングフレームワークを使い高速にテストを行う
|
||||||
|
|
||||||
- ツール: Jest
|
- GitHub Actions
|
||||||
|
- Vitest
|
||||||
実際にシステムを運用していくには、E2E テストなど高コストなテストを行う
|
- Playwright
|
||||||
|
|
||||||
- ツール: Playwright
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -248,23 +254,23 @@ jobs:
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Jest
|
## Vitest
|
||||||
|
|
||||||
https://jestjs.io/ja
|
https://vitest.dev/
|
||||||
|
|
||||||
JavaScript のテストを行うためのフレームワーク
|
ESM, TypeScript, JSX のテストを行うためのフレームワーク
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ npm i -D jest # インストール
|
$ npm i -D vitest # インストール
|
||||||
$ npx jest # 実行
|
$ npx vitest # 実行
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Jest を試してみる
|
## Vitest を試してみる
|
||||||
|
|
||||||
<iframe
|
<iframe
|
||||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/template?embed=1&view=editor&terminal=watch&file=sum.js,sum.test.js"
|
src="https://stackblitz.com/github/kou029w/vitest-hands-on/tree/main/templates/template?embed=1&view=editor&terminal=watch&file=sum.js,sum.test.js"
|
||||||
style="
|
style="
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 640px;
|
height: 640px;
|
||||||
|
@ -294,23 +300,22 @@ $ npx playwright codegen -o a.test.mjs https://example.com # テストコード
|
||||||
$ npx playwright test --headed # テストの実行
|
$ npx playwright test --headed # テストの実行
|
||||||
```
|
```
|
||||||
|
|
||||||
<!-- ---
|
---
|
||||||
|
|
||||||
## Playwright を試してみる
|
## Playwright を試してみる
|
||||||
|
|
||||||
https://try.playwright.tech -->
|
https://try.playwright.tech
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## まとめ
|
## まとめ
|
||||||
|
|
||||||
- 何を・どうやってテストするのか
|
- 何を・どうやってテストするのか
|
||||||
- テストピラミッド … コストに応じた適切な粒度と規模を保つ
|
|
||||||
- テストを実践するための具体的なツールの紹介
|
- テストを実践するための具体的なツールの紹介
|
||||||
- ESLint … JavaScript 静的コード解析ツール
|
- ESLint … JavaScript 静的コード解析ツール
|
||||||
- TypeScript … JavaScript 上位互換言語
|
- TypeScript … JavaScript 上位互換言語
|
||||||
- GitHub Actions … 自動実行環境
|
- GitHub Actions … 自動実行環境
|
||||||
- Jest … JavaScript テストフレームワーク
|
- Vitest … JavaScript テストフレームワーク
|
||||||
- Playwright … E2E テストフレームワーク
|
- Playwright … E2E テストフレームワーク
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -319,9 +324,9 @@ https://try.playwright.tech -->
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Jestではじめるテスト
|
## Vitestではじめるテスト
|
||||||
|
|
||||||
https://kou029w.github.io/jest-hands-on/
|
https://kou029w.github.io/vitest-hands-on/
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -333,6 +338,10 @@ https://kou029w.github.io/jest-hands-on/
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 過去のハンズオン資料: Jestではじめるテスト
|
||||||
|
|
||||||
|
https://kou029w.github.io/jest-hands-on/
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
window.addEventListener("DOMContentLoaded", function () {
|
window.addEventListener("DOMContentLoaded", function () {
|
||||||
document.querySelectorAll("a")?.forEach(function (a) {
|
document.querySelectorAll("a")?.forEach(function (a) {
|
||||||
|
|
2082
package-lock.json
generated
Normal file
2082
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -8,7 +8,6 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@marp-team/marp-cli": "^3.0.0",
|
"@marp-team/marp-cli": "^3.0.0",
|
||||||
"prettier": "^3.0.0",
|
"prettier": "^3.0.0"
|
||||||
"prettier-plugin-md-nocjsp": "^1.5.1"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue