Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
API-整合測試
Search
Star Rocket
September 11, 2019
Programming
0
110
API-整合測試
LaraGirls Meetup#4
Star Rocket
September 11, 2019
Tweet
Share
More Decks by Star Rocket
See All by Star Rocket
PHP 也有 Day #51:高效能框架的曙光 - 以 Laravel 經驗開發 Hyperf 應用
starrocket
1
350
PHP 也有 Day #50:處理前人的遺產—聊 legacy code
starrocket
0
92
PHP 也有 Day #49:邊緣人救星!用 Laravel 打造私人定製的聊天機器人
starrocket
0
410
PHP 也有 Day #48:我是誰?我在哪?
starrocket
0
65
PHP 也有 Day #48:我是誰?我在哪?
starrocket
0
70
How we talk about Engineering Culture at Phase
starrocket
0
42
PHP 也有 Day #47:打造好維護的 PHP 程式碼專案
starrocket
0
360
全端起手就用 Laravel+Vue.js 現場實作給你看
starrocket
0
200
PHP 也有 Day #45: VS Code 實戰料理 PHP 套件網站佐 Azure Pipelines
starrocket
0
110
Other Decks in Programming
See All in Programming
Claude Code の Skill で複雑な既存仕様をすっきり整理しよう
yuichirokato
1
380
Windows on Ryzen and I
seosoft
0
290
AI駆動開発の本音 〜Claude Code並列開発で見えたエンジニアの新しい役割〜
hisuzuya
4
510
grapheme_strrev関数が採択されました(あと雑感)
youkidearitai
PRO
1
220
AI Assistants for Your Angular Solutions
manfredsteyer
PRO
0
140
モジュラモノリスにおける境界をGoのinternalパッケージで守る
magavel
0
3.5k
エンジニアの「手元の自動化」を加速するn8n 2026.02.27
symy2co
0
160
ポーリング処理廃止によるイベント駆動アーキテクチャへの移行
seitarof
3
1.1k
AI時代のシステム設計:ドメインモデルで変更しやすさを守る設計戦略
masuda220
PRO
5
1k
どんと来い、データベース信頼性エンジニアリング / Introduction to DBRE
nnaka2992
1
290
守る「だけ」の優しいEMを抜けて、 事業とチームを両方見る視点を身につけた話
maroon8021
3
960
技術検証結果の整理と解析をAIに任せよう!
keisukeikeda
0
120
Featured
See All Featured
How Fast Is Fast Enough? [PerfNow 2025]
tammyeverts
3
480
Understanding Cognitive Biases in Performance Measurement
bluesmoon
32
2.8k
Reflections from 52 weeks, 52 projects
jeffersonlam
356
21k
What's in a price? How to price your products and services
michaelherold
247
13k
So, you think you're a good person
axbom
PRO
2
2k
DBのスキルで生き残る技術 - AI時代におけるテーブル設計の勘所
soudai
PRO
63
51k
Mobile First: as difficult as doing things right
swwweet
225
10k
Utilizing Notion as your number one productivity tool
mfonobong
4
260
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
360
30k
First, design no harm
axbom
PRO
2
1.1k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
199
73k
Optimizing for Happiness
mojombo
378
71k
Transcript
API 整合測試 Glossika Ray
About me
• Glossika Senior Backend Developer • 技能樹點的亂七八糟 • Php &
Laravel & DevOps
Glossika
Glossika Glossika 是由語言學專家和語言學習好手所組成的團隊,致力 於開發有科學根據的語言自學產品!我們利用演算法找出用戶 的語言水平落點,並進而提供有效精準的學習內容幫助學習者 精進語言能力,減少無效的學習時間和資源浪費。Glossika 平 台上線至今近兩年的時間,已開發 65 種語言及獲得超過八萬
名來自世界各地的註冊用戶。
Glossika 30 天免費試用
None
如何提交高品質且可靠的 API ?
寫單元測試!But ….
寫完後,先上線看有沒有問題,然後 如果有時間的話再來補單元測試!
高品質?可靠?
None
API 回應是否正常 API 之間的串接溝通是否也符合預期
對了,你有聽過整合測試嗎?
None
None
Pre Request script Send Request Get Response Tests Script
Postman Collection
Postman Collection • Request 的集合 • 可以分享給其他人 • 雲端儲存 •
可以做 API 之間的串接測試
None
Glossika 開發流程 訂定 API 格式 建立文件 Mock Server 後端 API
設計 前端頁面串接 Staging Production Postman Test
Glossika API 基本測試 • Response Schema Test ◦ Tiny Validator
4 • Http code and Require column Test ◦ Postman sandbox API
Glossika API 測試結構 Get Response Status Code test Schema Test
Tiny Validator 4 basic syntax "type": "array", "item" : {
// item here }, "type": "object", "properties" : { // properties }, "key" : { "type": "data type" }, Json Array Json Object Json Column
{ "article_id": 55 } { "object": { "properties": { "article_id":
{ "type": "integer" } } } } Response Tiny Validator
情境:測試使用者登入 API
Test case: User login • User story ◦ 使用者輸入帳號密碼登入,回傳該使用的的基本資訊 •
Input ◦ Email ◦ Password • Response ◦ User Id ◦ User name ◦ User email ◦ User Auth token
情境:使用者登入後,發表一篇文章,並取得文章資 料
Test case : Post Article • User story ◦ 使用者登入後,發表一篇文章,並取得文章資料
Login API Post Article API Get Article API token id
Environment / Global variable • Postman 中,不同 API 用來儲存需要傳遞的資料變數。
Postman Collection Runner
None
你這樣還是不靠譜啊,現在是自動化的時代了
Postman-CLI Newman
Postman-CLI Newman • 安裝 ◦ $ npm install -g newman
• 執行 ◦ $ newman run mycollection.json
總結
善用工具來協助工作
撰寫測試是提高程式碼品質的最佳方案 而且可以讓我們說話比較大聲
在有限的時間內,撰寫測試依舊可行 時間就像___,擠擠還是有的
Q/A