# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/fvt5fcq
使用 go test 框架驅動的自動化測試**
一. 背景-----團隊的測試人員稀缺,無奈只能 “自己動手,豐衣足食”,針對我們開發的系統進行自動化測試,這樣既節省的人力,又提高了效率,還增強了對系統質量保證的信心。我們的目標是讓自動化測試覆蓋三個環境,如下圖所示:我們看到這三個環境分別是:CI/CD 流水線上的自動化測試 發版後在各個 stage 環境中的自動化冒煙 / 驗收測試 [1] 發版後在生產環境的自動化冒煙 / 驗收測 ⌘ Read more