@sovovs/bycli 1.8.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli-manifest.json +0 -61
- package/clis/twitter/search.js +3 -3
- package/dist/src/adapter-shadow.js +2 -2
- package/dist/src/browser/analyze.d.ts +10 -99
- package/dist/src/browser/analyze.js +10 -226
- package/dist/src/browser/cdp.js +67 -7
- package/dist/src/browser/daemon-client.d.ts +2 -0
- package/dist/src/browser/daemon-client.js +1 -1
- package/dist/src/browser/extension-capabilities.d.ts +13 -0
- package/dist/src/browser/extension-capabilities.js +22 -0
- package/dist/src/browser/extension-capabilities.test.d.ts +1 -0
- package/dist/src/browser/extension-version-metadata.test.d.ts +1 -0
- package/dist/src/browser/navigation-guard.d.ts +78 -0
- package/dist/src/browser/navigation-guard.js +142 -0
- package/dist/src/browser/navigation-guard.test.d.ts +1 -0
- package/dist/src/browser/page.d.ts +1 -0
- package/dist/src/browser/page.js +20 -1
- package/dist/src/browser/url-policy.d.ts +89 -0
- package/dist/src/browser/url-policy.js +311 -0
- package/dist/src/browser/url-policy.test.d.ts +1 -0
- package/dist/src/browser/verify-fixture.js +2 -2
- package/dist/src/build-manifest.js +4 -2
- package/dist/src/capabilityRouting.d.ts +3 -2
- package/dist/src/capabilityRouting.js +10 -2
- package/dist/src/cli.js +11 -14
- package/dist/src/commanderAdapter.js +5 -5
- package/dist/src/config-paths.d.ts +19 -0
- package/dist/src/config-paths.js +31 -0
- package/dist/src/daemon.js +256 -0
- package/dist/src/discovery.d.ts +10 -3
- package/dist/src/discovery.js +20 -10
- package/dist/src/discovery.test.d.ts +1 -0
- package/dist/src/execution.d.ts +5 -0
- package/dist/src/execution.js +272 -48
- package/dist/src/help.js +8 -8
- package/dist/src/main.js +18 -2
- package/dist/src/manifest-schema.d.ts +9 -0
- package/dist/src/manifest-schema.js +162 -0
- package/dist/src/manifest-schema.test.d.ts +1 -0
- package/dist/src/manifest-types.d.ts +1 -1
- package/dist/src/observation/redaction.js +10 -4
- package/dist/src/plugin.js +11 -8
- package/dist/src/recorder/highlevel/analyze.d.ts +29 -0
- package/dist/src/recorder/highlevel/analyze.js +91 -0
- package/dist/src/recorder/highlevel/init.d.ts +125 -0
- package/dist/src/recorder/highlevel/init.js +279 -0
- package/dist/src/recorder/highlevel/init.test.d.ts +1 -0
- package/dist/src/recorder/highlevel/verify.d.ts +73 -0
- package/dist/src/recorder/highlevel/verify.js +74 -0
- package/dist/src/recorder/http/analyze-runner.d.ts +28 -0
- package/dist/src/recorder/http/analyze-runner.js +78 -0
- package/dist/src/recorder/http/analyze-runner.test.d.ts +1 -0
- package/dist/src/recorder/http/handlers.d.ts +51 -0
- package/dist/src/recorder/http/handlers.js +219 -0
- package/dist/src/recorder/http/wrapper-config.d.ts +20 -0
- package/dist/src/recorder/http/wrapper-config.js +82 -0
- package/dist/src/recorder/http/wrapper-envelope.d.ts +31 -0
- package/dist/src/recorder/http/wrapper-envelope.js +51 -0
- package/dist/src/recorder/http/wrapper-gates.d.ts +16 -0
- package/dist/src/recorder/http/wrapper-gates.js +28 -0
- package/dist/src/recorder/http/wrapper-metrics.d.ts +1 -0
- package/dist/src/recorder/http/wrapper-metrics.js +5 -0
- package/dist/src/recorder/http/wrapper-registry.d.ts +50 -0
- package/dist/src/recorder/http/wrapper-registry.js +98 -0
- package/dist/src/recorder/http/wrapper-server.d.ts +59 -0
- package/dist/src/recorder/http/wrapper-server.js +240 -0
- package/dist/src/recorder/http/wrapper.test.d.ts +1 -0
- package/dist/src/recorder/observability/logger.d.ts +5 -0
- package/dist/src/recorder/observability/logger.js +13 -0
- package/dist/src/recorder/runner/config.d.ts +34 -0
- package/dist/src/recorder/runner/config.js +84 -0
- package/dist/src/recorder/runner/config.test.d.ts +1 -0
- package/dist/src/recorder/runner/reap.d.ts +79 -0
- package/dist/src/recorder/runner/reap.js +230 -0
- package/dist/src/recorder/runner/reap.test.d.ts +1 -0
- package/dist/src/recorder/runner/runner-port.d.ts +95 -0
- package/dist/src/recorder/runner/runner-port.js +518 -0
- package/dist/src/recorder/runner/runner-port.test.d.ts +1 -0
- package/dist/src/recorder/runner/session-keys.d.ts +28 -0
- package/dist/src/recorder/runner/session-keys.js +72 -0
- package/dist/src/recorder/runner/session-keys.test.d.ts +1 -0
- package/dist/src/recorder/runner/verify-runner-main.d.ts +96 -0
- package/dist/src/recorder/runner/verify-runner-main.js +292 -0
- package/dist/src/recorder/runner/verify-runner-main.test.d.ts +1 -0
- package/dist/src/registry-api.d.ts +1 -1
- package/dist/src/registry-api.types.test.d.ts +1 -0
- package/dist/src/registry-transaction.d.ts +42 -0
- package/dist/src/registry-transaction.js +194 -0
- package/dist/src/registry-transaction.test.d.ts +1 -0
- package/dist/src/registry.d.ts +58 -16
- package/dist/src/registry.js +131 -15
- package/dist/src/serialization.d.ts +1 -1
- package/dist/src/serialization.js +3 -3
- package/dist/src/types.d.ts +2 -0
- package/package.json +8 -5
- package/scripts/m1-daemon-navigate-drive.mjs +138 -0
- package/scripts/m1-extension-spike.mjs +237 -0
- package/scripts/m1-live-spike.mjs +156 -0
- package/scripts/m6b-connect-back-spike.sh +31 -0
- package/clis/12306/utils.test.js +0 -331
- package/clis/1688/assets.test.js +0 -39
- package/clis/1688/download.test.js +0 -31
- package/clis/1688/item.test.js +0 -67
- package/clis/1688/search.test.js +0 -75
- package/clis/1688/shared.test.js +0 -57
- package/clis/1688/store.test.js +0 -62
- package/clis/36kr/article.test.js +0 -46
- package/clis/36kr/hot.test.js +0 -15
- package/clis/36kr/news.test.js +0 -85
- package/clis/51job/utils.test.js +0 -69
- package/clis/_atlassian/shared.test.js +0 -170
- package/clis/aibase/news.test.js +0 -59
- package/clis/amazon/bestsellers.test.js +0 -29
- package/clis/amazon/discussion.test.js +0 -124
- package/clis/amazon/offer.test.js +0 -29
- package/clis/amazon/product.test.js +0 -24
- package/clis/amazon/rankings.test.js +0 -41
- package/clis/amazon/search.test.js +0 -22
- package/clis/amazon/shared.test.js +0 -44
- package/clis/apple-podcasts/commands.test.js +0 -119
- package/clis/apple-podcasts/utils.test.js +0 -57
- package/clis/arxiv/arxiv.test.js +0 -112
- package/clis/baidu-scholar/search.test.js +0 -23
- package/clis/barchart/greeks.test.js +0 -138
- package/clis/bilibili/comment.test.js +0 -153
- package/clis/bilibili/comments.test.js +0 -142
- package/clis/bilibili/dynamic.test.js +0 -68
- package/clis/bilibili/hot.test.js +0 -17
- package/clis/bilibili/subtitle.test.js +0 -196
- package/clis/bilibili/summary.test.js +0 -210
- package/clis/bilibili/utils.test.js +0 -61
- package/clis/bilibili/video.test.js +0 -132
- package/clis/binance/commands.test.js +0 -70
- package/clis/bloomberg/utils.test.js +0 -129
- package/clis/booking/booking.test.js +0 -356
- package/clis/boss/chatlist.test.js +0 -211
- package/clis/boss/chatmsg.test.js +0 -230
- package/clis/boss/search.test.js +0 -78
- package/clis/boss/utils.test.js +0 -34
- package/clis/brave/search.test.js +0 -76
- package/clis/chaoxing/utils.test.js +0 -45
- package/clis/chatgpt/commands.test.js +0 -45
- package/clis/chatgpt/envelope.test.js +0 -108
- package/clis/chatgpt/image.test.js +0 -188
- package/clis/chatgpt/utils.test.js +0 -330
- package/clis/chatgpt-app/ax.test.js +0 -35
- package/clis/chatwise/composer.test.js +0 -186
- package/clis/chess/analyze.test.js +0 -79
- package/clis/chess/game.test.js +0 -178
- package/clis/chess/games.test.js +0 -164
- package/clis/chess/stats.test.js +0 -79
- package/clis/chess/utils.test.js +0 -230
- package/clis/claude/ask.test.js +0 -338
- package/clis/claude/commands.test.js +0 -118
- package/clis/claude/utils.test.js +0 -148
- package/clis/cnki/search.test.js +0 -18
- package/clis/codex/sidebar.test.js +0 -329
- package/clis/coingecko/coingecko.test.js +0 -109
- package/clis/confluence/commands.test.js +0 -195
- package/clis/coupang/coupang.test.js +0 -159
- package/clis/coupang/utils.test.js +0 -62
- package/clis/ctrip/ctrip.test.js +0 -719
- package/clis/dblp/dblp.test.js +0 -397
- package/clis/deepseek/ask.test.js +0 -312
- package/clis/deepseek/detail.test.js +0 -81
- package/clis/deepseek/send.test.js +0 -107
- package/clis/deepseek/utils.test.js +0 -370
- package/clis/defillama/defillama.test.js +0 -99
- package/clis/devto/devto.test.js +0 -236
- package/clis/dianping/dianping.test.js +0 -578
- package/clis/douban/download.test.js +0 -170
- package/clis/douban/movie-hot.test.js +0 -14
- package/clis/douban/search.test.js +0 -11
- package/clis/douban/subject.test.js +0 -11
- package/clis/douban/utils.test.js +0 -438
- package/clis/doubao/detail.test.js +0 -42
- package/clis/doubao/history.test.js +0 -37
- package/clis/doubao/utils.test.js +0 -344
- package/clis/douyin/_shared/browser-fetch.test.js +0 -64
- package/clis/douyin/_shared/creation-id.test.js +0 -22
- package/clis/douyin/_shared/imagex-upload.test.js +0 -87
- package/clis/douyin/_shared/sts2.test.js +0 -27
- package/clis/douyin/_shared/text-extra.test.js +0 -37
- package/clis/douyin/_shared/timing.test.js +0 -28
- package/clis/douyin/_shared/tos-upload-short-read.test.js +0 -83
- package/clis/douyin/_shared/tos-upload.test.js +0 -229
- package/clis/douyin/_shared/transcode.test.js +0 -91
- package/clis/douyin/_shared/vod-upload.test.js +0 -38
- package/clis/douyin/activities.test.js +0 -55
- package/clis/douyin/collections.test.js +0 -45
- package/clis/douyin/delete.test.js +0 -100
- package/clis/douyin/draft.test.js +0 -335
- package/clis/douyin/drafts.test.js +0 -11
- package/clis/douyin/hashtag.test.js +0 -171
- package/clis/douyin/location.test.js +0 -23
- package/clis/douyin/profile.test.js +0 -46
- package/clis/douyin/publish-upload-id.test.js +0 -170
- package/clis/douyin/publish.test.js +0 -38
- package/clis/douyin/stats.test.js +0 -22
- package/clis/douyin/update.test.js +0 -11
- package/clis/douyin/user-videos.test.js +0 -151
- package/clis/douyin/videos.test.js +0 -54
- package/clis/duckduckgo/search.test.js +0 -128
- package/clis/duckduckgo/suggest.test.js +0 -66
- package/clis/eastmoney/hot-rank.test.js +0 -59
- package/clis/endoflife/endoflife.test.js +0 -51
- package/clis/facebook/feed.test.js +0 -169
- package/clis/facebook/marketplace.test.js +0 -91
- package/clis/facebook/notifications.test.js +0 -458
- package/clis/facebook/search.test.js +0 -55
- package/clis/flathub/flathub.test.js +0 -90
- package/clis/flomo/memos.test.js +0 -144
- package/clis/gemini/ask.test.js +0 -100
- package/clis/gemini/deep-research-result.test.js +0 -155
- package/clis/gemini/deep-research.test.js +0 -181
- package/clis/gemini/reply-state.test.js +0 -671
- package/clis/gemini/utils.test.js +0 -198
- package/clis/geogebra/geogebra.test.js +0 -175
- package/clis/gitee/search.test.js +0 -65
- package/clis/gitee/user.test.js +0 -63
- package/clis/google/utils.test.js +0 -75
- package/clis/google-scholar/cite.test.js +0 -47
- package/clis/google-scholar/profile.test.js +0 -49
- package/clis/google-scholar/search.test.js +0 -71
- package/clis/goproxy/goproxy.test.js +0 -103
- package/clis/gov-law/commands.test.js +0 -39
- package/clis/gov-policy/gov-policy.test.js +0 -224
- package/clis/grok/ask.test.js +0 -29
- package/clis/grok/utils.test.js +0 -103
- package/clis/hackernews/hackernews.test.js +0 -132
- package/clis/hf/hf.test.js +0 -16
- package/clis/hupu/hot.test.js +0 -224
- package/clis/imdb/utils.test.js +0 -88
- package/clis/indeed/indeed.test.js +0 -375
- package/clis/instagram/_shared/private-publish.test.js +0 -705
- package/clis/instagram/_shared/protocol-capture.test.js +0 -114
- package/clis/instagram/download.test.js +0 -118
- package/clis/instagram/note.test.js +0 -53
- package/clis/instagram/post.test.js +0 -1647
- package/clis/instagram/reel.test.js +0 -167
- package/clis/instagram/story.test.js +0 -134
- package/clis/jd/commands.test.js +0 -41
- package/clis/jd/item.test.js +0 -354
- package/clis/jianyu/search.test.js +0 -153
- package/clis/jianyu/shared/procurement-contract.test.js +0 -72
- package/clis/jianyu/shared/procurement-detail.test.js +0 -84
- package/clis/jike/read.test.js +0 -86
- package/clis/jira/commands.test.js +0 -287
- package/clis/juejin/search.js +0 -123
- package/clis/juejin/search.test.js +0 -98
- package/clis/lesswrong/frontpage.test.js +0 -37
- package/clis/lichess/lichess.test.js +0 -85
- package/clis/linkedin/connect.test.js +0 -213
- package/clis/linkedin/inbox.test.js +0 -152
- package/clis/linkedin/job-detail.test.js +0 -38
- package/clis/linkedin/jobs-preferences.test.js +0 -43
- package/clis/linkedin/people-search.test.js +0 -216
- package/clis/linkedin/post-analytics.test.js +0 -40
- package/clis/linkedin/posts.test.js +0 -40
- package/clis/linkedin/profile-analytics.test.js +0 -67
- package/clis/linkedin/profile-experience.test.js +0 -152
- package/clis/linkedin/profile-projects.test.js +0 -111
- package/clis/linkedin/profile-read.test.js +0 -77
- package/clis/linkedin/safe-send.test.js +0 -204
- package/clis/linkedin/salesnav-inbox.test.js +0 -113
- package/clis/linkedin/salesnav-message.test.js +0 -172
- package/clis/linkedin/salesnav-search.test.js +0 -76
- package/clis/linkedin/salesnav-thread.test.js +0 -79
- package/clis/linkedin/search.test.js +0 -222
- package/clis/linkedin/sent-invitations.test.js +0 -62
- package/clis/linkedin/services-read.test.js +0 -105
- package/clis/linkedin/thread-snapshot.test.js +0 -89
- package/clis/linkedin/timeline.test.js +0 -81
- package/clis/linkedin-learning/course.test.js +0 -114
- package/clis/linkedin-learning/search.test.js +0 -144
- package/clis/linkedin-learning/trending.test.js +0 -123
- package/clis/linux-do/feed.test.js +0 -153
- package/clis/linux-do/topic-content.test.js +0 -59
- package/clis/lobsters/lobsters.test.js +0 -169
- package/clis/notebooklm/add-source.test.js +0 -97
- package/clis/notebooklm/compat.test.js +0 -16
- package/clis/notebooklm/create.test.js +0 -58
- package/clis/notebooklm/generate-audio.test.js +0 -63
- package/clis/notebooklm/generate-slides.test.js +0 -75
- package/clis/notebooklm/history.test.js +0 -58
- package/clis/notebooklm/note-list.test.js +0 -56
- package/clis/notebooklm/notes-get.test.js +0 -72
- package/clis/notebooklm/open.test.js +0 -63
- package/clis/notebooklm/rpc.test.js +0 -131
- package/clis/notebooklm/source-fulltext.test.js +0 -106
- package/clis/notebooklm/source-get.test.js +0 -84
- package/clis/notebooklm/source-guide.test.js +0 -104
- package/clis/notebooklm/summary.test.js +0 -78
- package/clis/notebooklm/utils.test.js +0 -449
- package/clis/notebooklm/write-note.test.js +0 -70
- package/clis/nuget/nuget.test.js +0 -111
- package/clis/oeis/oeis.test.js +0 -88
- package/clis/ones/task-helpers.test.js +0 -12
- package/clis/ones/worklog.test.js +0 -20
- package/clis/openfda/openfda.test.js +0 -114
- package/clis/openreview/openreview.test.js +0 -427
- package/clis/osv/osv.test.js +0 -97
- package/clis/paperreview/commands.test.js +0 -243
- package/clis/paperreview/utils.test.js +0 -49
- package/clis/pixiv/download.test.js +0 -87
- package/clis/pixiv/illusts.test.js +0 -99
- package/clis/pixiv/search.test.js +0 -83
- package/clis/powerchina/search.test.js +0 -93
- package/clis/producthunt/utils.test.js +0 -64
- package/clis/pubmed/pubmed.test.js +0 -276
- package/clis/quark/utils.test.js +0 -58
- package/clis/qwen/utils.test.js +0 -45
- package/clis/reddit/extract-media.test.js +0 -149
- package/clis/reddit/frontpage.test.js +0 -34
- package/clis/reddit/home.test.js +0 -170
- package/clis/reddit/hot.test.js +0 -32
- package/clis/reddit/popular.test.js +0 -26
- package/clis/reddit/read.test.js +0 -335
- package/clis/reddit/reply.test.js +0 -89
- package/clis/reddit/search.test.js +0 -26
- package/clis/reddit/subreddit-info.test.js +0 -163
- package/clis/reddit/subreddit.test.js +0 -31
- package/clis/reddit/subscribed.test.js +0 -168
- package/clis/reddit/whoami.test.js +0 -105
- package/clis/rednote/navigation.test.js +0 -26
- package/clis/rednote/rednote.test.js +0 -222
- package/clis/rest-countries/rest-countries.test.js +0 -83
- package/clis/reuters/reuters.test.js +0 -299
- package/clis/rfc/rfc.test.js +0 -74
- package/clis/sinafinance/stock.test.js +0 -59
- package/clis/spotify/utils.test.js +0 -67
- package/clis/stackoverflow/stackoverflow.test.js +0 -404
- package/clis/steam/steam.test.js +0 -46
- package/clis/substack/utils.test.js +0 -44
- package/clis/suno/commands.test.js +0 -188
- package/clis/suno/download.test.js +0 -151
- package/clis/suno/generate.test.js +0 -252
- package/clis/suno/utils.test.js +0 -329
- package/clis/taobao/commands.test.js +0 -41
- package/clis/tdx/hot-rank.test.js +0 -59
- package/clis/ths/hot-rank.test.js +0 -64
- package/clis/tieba/commands.test.js +0 -79
- package/clis/tieba/utils.test.js +0 -290
- package/clis/tiktok/creator-videos.test.js +0 -113
- package/clis/tiktok/refactor.test.js +0 -389
- package/clis/tiktok/write-refactor.test.js +0 -370
- package/clis/toutiao/toutiao.test.js +0 -378
- package/clis/tvmaze/tvmaze.test.js +0 -93
- package/clis/twitter/bookmark-folder.test.js +0 -395
- package/clis/twitter/bookmark-folders.test.js +0 -152
- package/clis/twitter/bookmark.test.js +0 -74
- package/clis/twitter/bookmarks.test.js +0 -205
- package/clis/twitter/delete.test.js +0 -85
- package/clis/twitter/device-follow.test.js +0 -287
- package/clis/twitter/download.test.js +0 -457
- package/clis/twitter/followers.test.js +0 -62
- package/clis/twitter/following.test.js +0 -338
- package/clis/twitter/hide-reply.test.js +0 -76
- package/clis/twitter/like.test.js +0 -73
- package/clis/twitter/likes.test.js +0 -220
- package/clis/twitter/list-add.test.js +0 -133
- package/clis/twitter/list-create.test.js +0 -169
- package/clis/twitter/list-remove.test.js +0 -110
- package/clis/twitter/list-tweets.test.js +0 -196
- package/clis/twitter/lists.test.js +0 -253
- package/clis/twitter/post.test.js +0 -258
- package/clis/twitter/profile.test.js +0 -39
- package/clis/twitter/quote.test.js +0 -194
- package/clis/twitter/reply.test.js +0 -237
- package/clis/twitter/retweet.test.js +0 -73
- package/clis/twitter/search.test.js +0 -349
- package/clis/twitter/shared.test.js +0 -794
- package/clis/twitter/thread.test.js +0 -58
- package/clis/twitter/timeline.test.js +0 -104
- package/clis/twitter/trending.test.js +0 -15
- package/clis/twitter/tweets.test.js +0 -362
- package/clis/twitter/unbookmark.test.js +0 -73
- package/clis/twitter/unlike.test.js +0 -75
- package/clis/twitter/unretweet.test.js +0 -73
- package/clis/twitter/utils.test.js +0 -169
- package/clis/uisdc/news.test.js +0 -66
- package/clis/uiverse/_shared.test.js +0 -62
- package/clis/uiverse/navigation.test.js +0 -12
- package/clis/upwork/upwork.test.js +0 -566
- package/clis/wanfang/search.test.js +0 -23
- package/clis/web/read.test.js +0 -392
- package/clis/weibo/delete.test.js +0 -94
- package/clis/weibo/envelope.test.js +0 -85
- package/clis/weibo/favorites.test.js +0 -114
- package/clis/weibo/publish.test.js +0 -192
- package/clis/weibo/user-posts.test.js +0 -92
- package/clis/weibo/utils.test.js +0 -36
- package/clis/weixin/drafts.test.js +0 -69
- package/clis/weixin/search.test.js +0 -227
- package/clis/weread/ai-outline.test.js +0 -83
- package/clis/weread/book-search.test.js +0 -242
- package/clis/weread/commands.test.js +0 -398
- package/clis/weread/private-api-regression.test.js +0 -369
- package/clis/weread/search-regression.test.js +0 -494
- package/clis/weread/utils.test.js +0 -128
- package/clis/weread-official/commands.test.js +0 -385
- package/clis/weread-official/utils.test.js +0 -242
- package/clis/wikidata/wikidata.test.js +0 -83
- package/clis/wikipedia/trending.test.js +0 -57
- package/clis/wttr/wttr.test.js +0 -84
- package/clis/xianyu/chat.test.js +0 -84
- package/clis/xianyu/im.test.js +0 -253
- package/clis/xianyu/item.test.js +0 -56
- package/clis/xianyu/publish.test.js +0 -220
- package/clis/xianyu/search.test.js +0 -17
- package/clis/xiaoe/xiaoe.test.js +0 -486
- package/clis/xiaohongshu/comments.test.js +0 -258
- package/clis/xiaohongshu/creator-note-detail.test.js +0 -451
- package/clis/xiaohongshu/creator-notes-summary.test.js +0 -94
- package/clis/xiaohongshu/creator-notes.test.js +0 -281
- package/clis/xiaohongshu/creator-stats.test.js +0 -24
- package/clis/xiaohongshu/delete-note.test.js +0 -172
- package/clis/xiaohongshu/download.test.js +0 -316
- package/clis/xiaohongshu/navigation.test.js +0 -34
- package/clis/xiaohongshu/note.test.js +0 -249
- package/clis/xiaohongshu/publish.test.js +0 -608
- package/clis/xiaohongshu/search.test.js +0 -325
- package/clis/xiaohongshu/user-helpers.test.js +0 -160
- package/clis/xiaoyuzhou/auth.test.js +0 -124
- package/clis/xiaoyuzhou/download.test.js +0 -135
- package/clis/xiaoyuzhou/podcast-episodes.test.js +0 -78
- package/clis/xiaoyuzhou/transcript.test.js +0 -195
- package/clis/xiaoyuzhou/utils.test.js +0 -39
- package/clis/xueqiu/comments.test.js +0 -696
- package/clis/xueqiu/danjuan-utils.test.js +0 -41
- package/clis/xueqiu/utils.test.js +0 -26
- package/clis/yahoo/search.test.js +0 -94
- package/clis/youdao/note.test.js +0 -99
- package/clis/youtube/channel.test.js +0 -59
- package/clis/youtube/feed.test.js +0 -131
- package/clis/youtube/transcript-group.test.js +0 -99
- package/clis/youtube/transcript.test.js +0 -296
- package/clis/youtube/utils.test.js +0 -84
- package/clis/yuanbao/ask.test.js +0 -124
- package/clis/yuanbao/new.test.js +0 -30
- package/clis/yuanbao/shared.test.js +0 -80
- package/clis/zhihu/answer-comments.test.js +0 -287
- package/clis/zhihu/answer-detail.test.js +0 -338
- package/clis/zhihu/answer.test.js +0 -54
- package/clis/zhihu/collection.test.js +0 -337
- package/clis/zhihu/collections.test.js +0 -182
- package/clis/zhihu/comment.test.js +0 -50
- package/clis/zhihu/download.test.js +0 -12
- package/clis/zhihu/favorite.test.js +0 -59
- package/clis/zhihu/follow.test.js +0 -42
- package/clis/zhihu/like.test.js +0 -41
- package/clis/zhihu/question.test.js +0 -251
- package/clis/zhihu/recommend.test.js +0 -143
- package/clis/zhihu/search.test.js +0 -198
- package/clis/zhihu/target.test.js +0 -77
- package/clis/zhihu/text.test.js +0 -24
- package/clis/zhihu/write-shared.test.js +0 -176
- package/clis/zlibrary/commands.test.js +0 -65
- package/clis/zsxq/search.test.js +0 -24
- package/clis/zsxq/topic.test.js +0 -30
- package/clis/zsxq/topics.test.js +0 -24
- package/clis/zsxq/utils.test.js +0 -31
- package/dist/src/adapter-shadow.test.js +0 -49
- package/dist/src/adapter-source.test.js +0 -29
- package/dist/src/browser/analyze.test.js +0 -166
- package/dist/src/browser/article-extract.e2e.test.js +0 -105
- package/dist/src/browser/article-extract.test.js +0 -94
- package/dist/src/browser/ax-snapshot.test.js +0 -91
- package/dist/src/browser/base-page.test.js +0 -758
- package/dist/src/browser/cdp-click-fixture.test.js +0 -87
- package/dist/src/browser/cdp.test.js +0 -79
- package/dist/src/browser/compound.test.js +0 -175
- package/dist/src/browser/daemon-client.test.js +0 -199
- package/dist/src/browser/dom-helpers.test.js +0 -106
- package/dist/src/browser/dom-snapshot.test.js +0 -313
- package/dist/src/browser/errors.test.js +0 -60
- package/dist/src/browser/extract.test.js +0 -129
- package/dist/src/browser/find.test.js +0 -180
- package/dist/src/browser/html-tree.test.js +0 -181
- package/dist/src/browser/network-cache.test.js +0 -58
- package/dist/src/browser/network-key.test.js +0 -49
- package/dist/src/browser/page.test.js +0 -378
- package/dist/src/browser/shape-filter.test.js +0 -101
- package/dist/src/browser/shape.test.js +0 -82
- package/dist/src/browser/stealth.test.js +0 -134
- package/dist/src/browser/target-errors.test.js +0 -94
- package/dist/src/browser/target-resolver.test.js +0 -118
- package/dist/src/browser/utils.test.js +0 -29
- package/dist/src/browser/verify-fixture.test.js +0 -219
- package/dist/src/browser.test.js +0 -232
- package/dist/src/build-manifest.test.js +0 -341
- package/dist/src/capabilityRouting.test.js +0 -63
- package/dist/src/cli-argv-preprocess.test.js +0 -209
- package/dist/src/cli.test.js +0 -2803
- package/dist/src/commanderAdapter.test.js +0 -352
- package/dist/src/commands/daemon.test.js +0 -219
- package/dist/src/completion.test.js +0 -24
- package/dist/src/convention-audit.test.js +0 -247
- package/dist/src/daemon.test.js +0 -60
- package/dist/src/doctor.test.js +0 -263
- package/dist/src/download/article-download.test.js +0 -235
- package/dist/src/download/index.test.js +0 -140
- package/dist/src/download/media-download.test.js +0 -112
- package/dist/src/download/progress.test.js +0 -36
- package/dist/src/electron-apps.test.js +0 -49
- package/dist/src/engine.test.js +0 -312
- package/dist/src/errors.test.js +0 -109
- package/dist/src/execution.test.js +0 -623
- package/dist/src/extension-manifest-regression.test.js +0 -12
- package/dist/src/external.test.js +0 -146
- package/dist/src/help.test.js +0 -58
- package/dist/src/hooks.test.js +0 -92
- package/dist/src/interceptor.test.js +0 -81
- package/dist/src/launcher.test.js +0 -138
- package/dist/src/node-network.test.js +0 -55
- package/dist/src/observation/artifact.test.js +0 -121
- package/dist/src/observation/manager.test.js +0 -13
- package/dist/src/observation/redaction.test.js +0 -32
- package/dist/src/observation/retention.test.js +0 -118
- package/dist/src/observation/ring-buffer.test.js +0 -22
- package/dist/src/output.test.js +0 -53
- package/dist/src/package-exports.test.js +0 -112
- package/dist/src/pipeline/executor.test.js +0 -182
- package/dist/src/pipeline/steps/download.test.js +0 -102
- package/dist/src/pipeline/steps/fetch.test.js +0 -117
- package/dist/src/pipeline/template.test.js +0 -175
- package/dist/src/pipeline/transform.test.js +0 -133
- package/dist/src/plugin-manifest.test.js +0 -179
- package/dist/src/plugin-scaffold.test.js +0 -83
- package/dist/src/plugin.test.js +0 -1324
- package/dist/src/registry.test.js +0 -209
- package/dist/src/runtime-detect.test.js +0 -39
- package/dist/src/serialization.test.js +0 -78
- package/dist/src/snapshotFormatter.test.js +0 -521
- package/dist/src/tui.test.js +0 -19
- package/dist/src/update-check.test.js +0 -116
- package/dist/src/utils.test.js +0 -155
- package/dist/src/validate.test.js +0 -90
- package/dist/src/weixin-download.test.js +0 -45
package/clis/oeis/oeis.test.js
DELETED
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import { afterEach, describe, expect, it, vi } from 'vitest';
|
|
2
|
-
import { getRegistry } from '@sovovs/bycli/registry';
|
|
3
|
-
import { ArgumentError, CommandExecutionError, EmptyResultError } from '@sovovs/bycli/errors';
|
|
4
|
-
import './search.js';
|
|
5
|
-
import './sequence.js';
|
|
6
|
-
|
|
7
|
-
afterEach(() => {
|
|
8
|
-
vi.unstubAllGlobals();
|
|
9
|
-
vi.restoreAllMocks();
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
describe('oeis search adapter', () => {
|
|
13
|
-
const cmd = getRegistry().get('oeis/search');
|
|
14
|
-
|
|
15
|
-
it('rejects bad args before fetching', async () => {
|
|
16
|
-
const fetchMock = vi.fn();
|
|
17
|
-
vi.stubGlobal('fetch', fetchMock);
|
|
18
|
-
await expect(cmd.func({ query: '' })).rejects.toThrow(ArgumentError);
|
|
19
|
-
await expect(cmd.func({ query: 'foo', limit: 999 })).rejects.toThrow(ArgumentError);
|
|
20
|
-
expect(fetchMock).not.toHaveBeenCalled();
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
it('maps HTTP 429 to CommandExecutionError', async () => {
|
|
24
|
-
// Fresh Response per call so we don't tickle "Body has already been read" between pages.
|
|
25
|
-
vi.stubGlobal('fetch', vi.fn().mockImplementation(() => Promise.resolve(new Response('throttled', { status: 429 }))));
|
|
26
|
-
await expect(cmd.func({ query: 'fibonacci', limit: 5 })).rejects.toThrow(CommandExecutionError);
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
it('throws EmptyResultError when first page is empty', async () => {
|
|
30
|
-
vi.stubGlobal('fetch', vi.fn().mockImplementation(() => Promise.resolve(new Response(JSON.stringify([]), { status: 200 }))));
|
|
31
|
-
await expect(cmd.func({ query: 'no-results', limit: 5 })).rejects.toThrow(EmptyResultError);
|
|
32
|
-
});
|
|
33
|
-
|
|
34
|
-
it('round-trips A-id from search row into oeis.org URL', async () => {
|
|
35
|
-
const result = [{
|
|
36
|
-
number: 45, name: 'Fibonacci numbers', keyword: 'core,nonn,nice',
|
|
37
|
-
data: '0,1,1,2,3,5,8,13,21,34,55,89',
|
|
38
|
-
author: 'Sloane', created: '1991-04-30T03:00:00-04:00',
|
|
39
|
-
}];
|
|
40
|
-
vi.stubGlobal('fetch', vi.fn().mockImplementation(() => Promise.resolve(new Response(JSON.stringify(result), { status: 200 }))));
|
|
41
|
-
const rows = await cmd.func({ query: 'fibonacci', limit: 1 });
|
|
42
|
-
expect(rows[0]).toMatchObject({
|
|
43
|
-
rank: 1, id: 'A000045', name: 'Fibonacci numbers',
|
|
44
|
-
keywords: 'core,nonn,nice',
|
|
45
|
-
preview: '0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89',
|
|
46
|
-
url: 'https://oeis.org/A000045',
|
|
47
|
-
});
|
|
48
|
-
});
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
describe('oeis sequence adapter', () => {
|
|
52
|
-
const cmd = getRegistry().get('oeis/sequence');
|
|
53
|
-
|
|
54
|
-
it('rejects malformed sequence ids before fetching', async () => {
|
|
55
|
-
const fetchMock = vi.fn();
|
|
56
|
-
vi.stubGlobal('fetch', fetchMock);
|
|
57
|
-
await expect(cmd.func({ id: '' })).rejects.toThrow(ArgumentError);
|
|
58
|
-
await expect(cmd.func({ id: 'B000045' })).rejects.toThrow(ArgumentError);
|
|
59
|
-
await expect(cmd.func({ id: 'A' })).rejects.toThrow(ArgumentError);
|
|
60
|
-
expect(fetchMock).not.toHaveBeenCalled();
|
|
61
|
-
});
|
|
62
|
-
|
|
63
|
-
it('throws EmptyResultError when search returns null/empty list', async () => {
|
|
64
|
-
// OEIS returns empty list (or sometimes null body) for unknown id.
|
|
65
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify([]), { status: 200 })));
|
|
66
|
-
await expect(cmd.func({ id: 'A9999999' })).rejects.toThrow(EmptyResultError);
|
|
67
|
-
});
|
|
68
|
-
|
|
69
|
-
it('counts comments / formulas / xrefs without dumping the full graph', async () => {
|
|
70
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify([{
|
|
71
|
-
number: 40, name: 'The prime numbers.', keyword: 'core,nonn',
|
|
72
|
-
data: '2,3,5,7,11,13,17,19,23',
|
|
73
|
-
offset: '1,1', author: 'Sloane', created: '1991-04-30T03:00:00-04:00', revision: 100,
|
|
74
|
-
comment: ['c1', 'c2', 'c3'],
|
|
75
|
-
formula: ['f1', 'f2'],
|
|
76
|
-
reference: ['r1'],
|
|
77
|
-
xref: ['A000001', 'A000002'],
|
|
78
|
-
link: ['l1', 'l2', 'l3', 'l4'],
|
|
79
|
-
}]), { status: 200 })));
|
|
80
|
-
const rows = await cmd.func({ id: 'A000040' });
|
|
81
|
-
expect(rows[0]).toMatchObject({
|
|
82
|
-
id: 'A000040', name: 'The prime numbers.',
|
|
83
|
-
termCount: 9, offset: '1,1', revision: 100,
|
|
84
|
-
commentCount: 3, formulaCount: 2, referenceCount: 1, xrefCount: 2, linkCount: 4,
|
|
85
|
-
url: 'https://oeis.org/A000040',
|
|
86
|
-
});
|
|
87
|
-
});
|
|
88
|
-
});
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { describe, expect, it } from 'vitest';
|
|
2
|
-
import { parsePeekLimit } from './task-helpers.js';
|
|
3
|
-
describe('parsePeekLimit', () => {
|
|
4
|
-
it('returns the fallback when the input is not numeric', () => {
|
|
5
|
-
expect(parsePeekLimit('abc', 30)).toBe(30);
|
|
6
|
-
});
|
|
7
|
-
it('clamps the input into the supported range', () => {
|
|
8
|
-
expect(parsePeekLimit('0', 30)).toBe(30);
|
|
9
|
-
expect(parsePeekLimit('999', 30)).toBe(500);
|
|
10
|
-
expect(parsePeekLimit('42', 30)).toBe(42);
|
|
11
|
-
});
|
|
12
|
-
});
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { describe, expect, it } from 'vitest';
|
|
2
|
-
import { buildAddManhourGraphqlBody } from './worklog.js';
|
|
3
|
-
describe('buildAddManhourGraphqlBody', () => {
|
|
4
|
-
it('inlines the addManhour arguments so the mutation is syntactically valid', () => {
|
|
5
|
-
const payload = JSON.parse(buildAddManhourGraphqlBody({
|
|
6
|
-
ownerId: 'user-1',
|
|
7
|
-
taskId: 'task-1',
|
|
8
|
-
startTime: 1711411200,
|
|
9
|
-
rawManhour: 150000,
|
|
10
|
-
note: 'Backfill',
|
|
11
|
-
}));
|
|
12
|
-
expect(payload.query).toContain('mutation AddManhour');
|
|
13
|
-
expect(payload.query).toContain('owner: "user-1"');
|
|
14
|
-
expect(payload.query).toContain('task: "task-1"');
|
|
15
|
-
expect(payload.query).toContain('start_time: 1711411200');
|
|
16
|
-
expect(payload.query).toContain('hours: 150000');
|
|
17
|
-
expect(payload.query).not.toContain('$owner');
|
|
18
|
-
expect(payload.query).not.toContain('$task');
|
|
19
|
-
});
|
|
20
|
-
});
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect, vi, afterEach } from 'vitest';
|
|
2
|
-
import { getRegistry } from '@sovovs/bycli/registry';
|
|
3
|
-
import { ArgumentError, EmptyResultError, CommandExecutionError } from '@sovovs/bycli/errors';
|
|
4
|
-
import './drug-label.js';
|
|
5
|
-
import './food-recall.js';
|
|
6
|
-
|
|
7
|
-
const origFetch = global.fetch;
|
|
8
|
-
afterEach(() => { global.fetch = origFetch; });
|
|
9
|
-
|
|
10
|
-
const sampleLabel = {
|
|
11
|
-
id: 'abcde-12345',
|
|
12
|
-
effective_time: '20250101',
|
|
13
|
-
purpose: ['Pain reliever'],
|
|
14
|
-
indications_and_usage: ['For temporary relief of minor aches and pains.'],
|
|
15
|
-
warnings: ['Allergy alert: do not use if you are allergic to NSAIDs.'],
|
|
16
|
-
dosage_and_administration: ['Take 1-2 tablets every 4-6 hours.'],
|
|
17
|
-
openfda: {
|
|
18
|
-
brand_name: ['Aspirin Bayer'],
|
|
19
|
-
generic_name: ['ASPIRIN'],
|
|
20
|
-
manufacturer_name: ['Bayer HealthCare LLC'],
|
|
21
|
-
product_type: ['HUMAN OTC DRUG'],
|
|
22
|
-
route: ['ORAL'],
|
|
23
|
-
product_ndc: ['0280-1234'],
|
|
24
|
-
pharm_class_epc: ['Nonsteroidal Anti-inflammatory Drug [EPC]'],
|
|
25
|
-
},
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
const sampleRecall = {
|
|
29
|
-
recall_number: 'F-1234-2026',
|
|
30
|
-
status: 'Ongoing',
|
|
31
|
-
classification: 'Class I',
|
|
32
|
-
voluntary_mandated: 'Voluntary',
|
|
33
|
-
recalling_firm: 'Acme Foods Inc',
|
|
34
|
-
city: 'Atlanta', state: 'GA', country: 'United States',
|
|
35
|
-
product_description: 'Acme Salad Mix 12oz',
|
|
36
|
-
reason_for_recall: 'Listeria monocytogenes contamination',
|
|
37
|
-
product_quantity: '20000 cases',
|
|
38
|
-
distribution_pattern: 'Nationwide',
|
|
39
|
-
report_date: '20260415',
|
|
40
|
-
recall_initiation_date: '20260410',
|
|
41
|
-
termination_date: null,
|
|
42
|
-
};
|
|
43
|
-
|
|
44
|
-
describe('openfda drug-label', () => {
|
|
45
|
-
const cmd = getRegistry().get('openfda/drug-label');
|
|
46
|
-
|
|
47
|
-
it('rejects empty query', async () => {
|
|
48
|
-
await expect(cmd.func({ query: '' })).rejects.toBeInstanceOf(ArgumentError);
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
it('rejects --limit out of range', async () => {
|
|
52
|
-
await expect(cmd.func({ query: 'aspirin', limit: 99 })).rejects.toBeInstanceOf(ArgumentError);
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
it('promotes 404 to EmptyResultError', async () => {
|
|
56
|
-
global.fetch = vi.fn(() => Promise.resolve(new Response('{}', { status: 404 })));
|
|
57
|
-
await expect(cmd.func({ query: 'unobtainium' })).rejects.toBeInstanceOf(EmptyResultError);
|
|
58
|
-
});
|
|
59
|
-
|
|
60
|
-
it('shapes drug-label rows + collapses 1-elem arrays', async () => {
|
|
61
|
-
global.fetch = vi.fn(() => Promise.resolve(new Response(JSON.stringify({ results: [sampleLabel] }), { status: 200 })));
|
|
62
|
-
const rows = await cmd.func({ query: 'aspirin', limit: 1 });
|
|
63
|
-
expect(rows).toHaveLength(1);
|
|
64
|
-
expect(rows[0]).toMatchObject({
|
|
65
|
-
rank: 1, brandName: 'Aspirin Bayer', genericName: 'ASPIRIN',
|
|
66
|
-
manufacturer: 'Bayer HealthCare LLC', purpose: 'Pain reliever',
|
|
67
|
-
pharmClass: 'Nonsteroidal Anti-inflammatory Drug [EPC]',
|
|
68
|
-
});
|
|
69
|
-
});
|
|
70
|
-
|
|
71
|
-
it('uses brand OR generic search instead of requiring both fields to match', async () => {
|
|
72
|
-
const calls = [];
|
|
73
|
-
global.fetch = vi.fn((url) => {
|
|
74
|
-
calls.push(url);
|
|
75
|
-
return Promise.resolve(new Response(JSON.stringify({ results: [sampleLabel] }), { status: 200 }));
|
|
76
|
-
});
|
|
77
|
-
await cmd.func({ query: 'tylenol', limit: 1 });
|
|
78
|
-
expect(calls[0]).toContain('+OR+');
|
|
79
|
-
expect(calls[0]).toContain('openfda.brand_name');
|
|
80
|
-
expect(calls[0]).toContain('openfda.generic_name');
|
|
81
|
-
});
|
|
82
|
-
});
|
|
83
|
-
|
|
84
|
-
describe('openfda food-recall', () => {
|
|
85
|
-
const cmd = getRegistry().get('openfda/food-recall');
|
|
86
|
-
|
|
87
|
-
it('promotes 429 to CommandExecutionError', async () => {
|
|
88
|
-
global.fetch = vi.fn(() => Promise.resolve(new Response('rate', { status: 429 })));
|
|
89
|
-
await expect(cmd.func({})).rejects.toBeInstanceOf(CommandExecutionError);
|
|
90
|
-
});
|
|
91
|
-
|
|
92
|
-
it('shapes food-recall rows + carries report_date', async () => {
|
|
93
|
-
global.fetch = vi.fn(() => Promise.resolve(new Response(JSON.stringify({ results: [sampleRecall] }), { status: 200 })));
|
|
94
|
-
const rows = await cmd.func({ classification: 'Class I' });
|
|
95
|
-
expect(rows).toHaveLength(1);
|
|
96
|
-
expect(rows[0]).toMatchObject({
|
|
97
|
-
rank: 1, recallNumber: 'F-1234-2026', status: 'Ongoing',
|
|
98
|
-
classification: 'Class I', recallingFirm: 'Acme Foods Inc',
|
|
99
|
-
reportDate: '20260415',
|
|
100
|
-
});
|
|
101
|
-
});
|
|
102
|
-
|
|
103
|
-
it('threads --query AND --status into Lucene query string', async () => {
|
|
104
|
-
const calls = [];
|
|
105
|
-
global.fetch = vi.fn((url) => {
|
|
106
|
-
calls.push(url);
|
|
107
|
-
return Promise.resolve(new Response(JSON.stringify({ results: [sampleRecall] }), { status: 200 }));
|
|
108
|
-
});
|
|
109
|
-
await cmd.func({ query: 'salmonella', status: 'Ongoing' });
|
|
110
|
-
// Verify both clauses survived URL encoding (the literal `+AND+` should NOT be percent-escaped).
|
|
111
|
-
expect(calls[0]).toContain('+AND+');
|
|
112
|
-
expect(calls[0]).toContain('salmonella');
|
|
113
|
-
});
|
|
114
|
-
});
|
|
@@ -1,427 +0,0 @@
|
|
|
1
|
-
import { afterEach, describe, expect, it, vi } from 'vitest';
|
|
2
|
-
import { getRegistry } from '@sovovs/bycli/registry';
|
|
3
|
-
import {
|
|
4
|
-
absolutePdf,
|
|
5
|
-
coerceInt,
|
|
6
|
-
formatDate,
|
|
7
|
-
noteToRow,
|
|
8
|
-
requireBoundedInt,
|
|
9
|
-
requireForumId,
|
|
10
|
-
requireNonNegativeInt,
|
|
11
|
-
requireProfileId,
|
|
12
|
-
} from './utils.js';
|
|
13
|
-
import './search.js';
|
|
14
|
-
import './venue.js';
|
|
15
|
-
import './paper.js';
|
|
16
|
-
import './reviews.js';
|
|
17
|
-
import './author.js';
|
|
18
|
-
|
|
19
|
-
const SAMPLE_NOTE = {
|
|
20
|
-
id: 'abc123XYZ_',
|
|
21
|
-
forum: 'abc123XYZ_',
|
|
22
|
-
pdate: 1727524853394,
|
|
23
|
-
cdate: 1727524853394,
|
|
24
|
-
content: {
|
|
25
|
-
title: { value: 'Test Paper Title with spaces' },
|
|
26
|
-
authors: { value: ['Alice Smith', 'Bob Jones'] },
|
|
27
|
-
authorids: { value: ['~Alice_Smith1', '~Bob_Jones2'] },
|
|
28
|
-
keywords: { value: ['transformer', 'attention'] },
|
|
29
|
-
abstract: { value: 'A long abstract\n with newlines.' },
|
|
30
|
-
venue: { value: 'ICLR 2024 oral' },
|
|
31
|
-
venueid: { value: 'ICLR.cc/2024/Conference' },
|
|
32
|
-
primary_area: { value: 'foundation models' },
|
|
33
|
-
pdf: { value: '/pdf/abc.pdf' },
|
|
34
|
-
},
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
afterEach(() => {
|
|
38
|
-
vi.unstubAllGlobals();
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
describe('openreview adapter', () => {
|
|
42
|
-
it('registers all five commands with the expected columns', () => {
|
|
43
|
-
const search = getRegistry().get('openreview/search');
|
|
44
|
-
const venue = getRegistry().get('openreview/venue');
|
|
45
|
-
const paper = getRegistry().get('openreview/paper');
|
|
46
|
-
const reviews = getRegistry().get('openreview/reviews');
|
|
47
|
-
const author = getRegistry().get('openreview/author');
|
|
48
|
-
|
|
49
|
-
expect(search).toBeDefined();
|
|
50
|
-
expect(venue).toBeDefined();
|
|
51
|
-
expect(paper).toBeDefined();
|
|
52
|
-
expect(reviews).toBeDefined();
|
|
53
|
-
expect(author).toBeDefined();
|
|
54
|
-
|
|
55
|
-
expect(search.columns).toEqual(['rank', 'id', 'title', 'authors', 'venue', 'pdate', 'url']);
|
|
56
|
-
expect(venue.columns).toEqual(['rank', 'id', 'title', 'authors', 'keywords', 'primary_area', 'pdate', 'pdf', 'url']);
|
|
57
|
-
expect(paper.columns).toEqual(['id', 'title', 'authors', 'keywords', 'venue', 'venueid', 'primary_area', 'abstract', 'pdate', 'pdf', 'url']);
|
|
58
|
-
expect(reviews.columns).toEqual(['type', 'author', 'rating', 'confidence', 'text']);
|
|
59
|
-
expect(author.columns).toEqual(['rank', 'id', 'title', 'authors', 'venue', 'pdate', 'url']);
|
|
60
|
-
});
|
|
61
|
-
|
|
62
|
-
it('noteToRow extracts every wrapped v2 field, joins lists, and builds absolute URLs', () => {
|
|
63
|
-
const row = noteToRow(SAMPLE_NOTE);
|
|
64
|
-
expect(row.id).toBe('abc123XYZ_');
|
|
65
|
-
expect(row.title).toBe('Test Paper Title with spaces');
|
|
66
|
-
expect(row.authors).toBe('Alice Smith, Bob Jones');
|
|
67
|
-
expect(row.keywords).toBe('transformer, attention');
|
|
68
|
-
expect(row.abstract).toBe('A long abstract with newlines.');
|
|
69
|
-
expect(row.venue).toBe('ICLR 2024 oral');
|
|
70
|
-
expect(row.venueid).toBe('ICLR.cc/2024/Conference');
|
|
71
|
-
expect(row.primary_area).toBe('foundation models');
|
|
72
|
-
expect(row.pdf).toBe('https://openreview.net/pdf/abc.pdf');
|
|
73
|
-
expect(row.url).toBe('https://openreview.net/forum?id=abc123XYZ_');
|
|
74
|
-
expect(row.pdate).toBe('2024-09-28');
|
|
75
|
-
});
|
|
76
|
-
|
|
77
|
-
it('noteToRow falls back to author IDs when authors field is missing', () => {
|
|
78
|
-
const note = { ...SAMPLE_NOTE, content: { ...SAMPLE_NOTE.content, authors: undefined } };
|
|
79
|
-
expect(noteToRow(note).authors).toBe('Alice Smith, Bob Jones');
|
|
80
|
-
});
|
|
81
|
-
|
|
82
|
-
it('coerceInt accepts numeric strings, rejects floats and NaN', () => {
|
|
83
|
-
expect(coerceInt(10)).toBe(10);
|
|
84
|
-
expect(coerceInt('25')).toBe(25);
|
|
85
|
-
expect(Number.isNaN(coerceInt(1.5))).toBe(true);
|
|
86
|
-
expect(Number.isNaN(coerceInt('abc'))).toBe(true);
|
|
87
|
-
expect(Number.isNaN(coerceInt(undefined))).toBe(true);
|
|
88
|
-
expect(Number.isNaN(coerceInt(''))).toBe(true);
|
|
89
|
-
});
|
|
90
|
-
|
|
91
|
-
it('requireBoundedInt rejects non-positive, non-integer and over-cap values', () => {
|
|
92
|
-
expect(requireBoundedInt(10, 25, 50)).toBe(10);
|
|
93
|
-
expect(requireBoundedInt(undefined, 25, 50)).toBe(25);
|
|
94
|
-
expect(() => requireBoundedInt(0, 25, 50)).toThrow('positive integer');
|
|
95
|
-
expect(() => requireBoundedInt(1.5, 25, 50)).toThrow('positive integer');
|
|
96
|
-
expect(() => requireBoundedInt(51, 25, 50)).toThrow('<= 50');
|
|
97
|
-
expect(() => requireBoundedInt('abc', 25, 50)).toThrow('positive integer');
|
|
98
|
-
});
|
|
99
|
-
|
|
100
|
-
it('requireNonNegativeInt accepts 0 and rejects negatives', () => {
|
|
101
|
-
expect(requireNonNegativeInt(0, 0)).toBe(0);
|
|
102
|
-
expect(requireNonNegativeInt(50, 0)).toBe(50);
|
|
103
|
-
expect(() => requireNonNegativeInt(-1, 0)).toThrow('non-negative integer');
|
|
104
|
-
expect(() => requireNonNegativeInt(1.5, 0)).toThrow('non-negative integer');
|
|
105
|
-
});
|
|
106
|
-
|
|
107
|
-
it('requireForumId rejects empty and malformed ids', () => {
|
|
108
|
-
expect(requireForumId('5sRnsubyAK')).toBe('5sRnsubyAK');
|
|
109
|
-
expect(requireForumId('abc-def_12')).toBe('abc-def_12');
|
|
110
|
-
expect(() => requireForumId('')).toThrow('required');
|
|
111
|
-
expect(() => requireForumId(' ')).toThrow('required');
|
|
112
|
-
expect(() => requireForumId('has space')).toThrow('not a valid forum id');
|
|
113
|
-
expect(() => requireForumId('a/b')).toThrow('not a valid forum id');
|
|
114
|
-
expect(() => requireForumId('short')).toThrow('not a valid forum id');
|
|
115
|
-
});
|
|
116
|
-
|
|
117
|
-
it('requireProfileId accepts canonical profile ids and rejects malformed input', () => {
|
|
118
|
-
expect(requireProfileId('~Yoshua_Bengio1')).toBe('~Yoshua_Bengio1');
|
|
119
|
-
expect(requireProfileId('~Bo_Liu17')).toBe('~Bo_Liu17');
|
|
120
|
-
expect(requireProfileId('~Geoffrey_Everest_Hinton1')).toBe('~Geoffrey_Everest_Hinton1');
|
|
121
|
-
expect(requireProfileId('~Anne-Christin_Hauschild1')).toBe('~Anne-Christin_Hauschild1');
|
|
122
|
-
expect(requireProfileId('~S.Aruna_Deepthi1')).toBe('~S.Aruna_Deepthi1');
|
|
123
|
-
expect(requireProfileId('~Andrzej_Czyżewski1')).toBe('~Andrzej_Czyżewski1');
|
|
124
|
-
expect(requireProfileId('~August_Bøgh_Rønberg1')).toBe('~August_Bøgh_Rønberg1');
|
|
125
|
-
expect(requireProfileId('~Wagner_Meira_Jr.1')).toBe('~Wagner_Meira_Jr.1');
|
|
126
|
-
expect(() => requireProfileId('')).toThrow('required');
|
|
127
|
-
expect(() => requireProfileId(' ')).toThrow('required');
|
|
128
|
-
// Missing leading tilde.
|
|
129
|
-
expect(() => requireProfileId('Bo_Liu17')).toThrow('not a valid profile id');
|
|
130
|
-
// Missing trailing disambiguator number.
|
|
131
|
-
expect(() => requireProfileId('~Bo_Liu')).toThrow('not a valid profile id');
|
|
132
|
-
// Spaces / non-letter characters break the underscore-joined name.
|
|
133
|
-
expect(() => requireProfileId('~Bo Liu1')).toThrow('not a valid profile id');
|
|
134
|
-
// dblp-style PID must not silently fall through.
|
|
135
|
-
expect(() => requireProfileId('56/953')).toThrow('not a valid profile id');
|
|
136
|
-
expect(() => requireProfileId('~Bo_Liu1?evil=1')).toThrow('not a valid profile id');
|
|
137
|
-
expect(() => requireProfileId('~Bo/Liu1')).toThrow('not a valid profile id');
|
|
138
|
-
expect(() => requireProfileId('~123')).toThrow('not a valid profile id');
|
|
139
|
-
});
|
|
140
|
-
|
|
141
|
-
it('formatDate handles ms-since-epoch and rejects invalid input', () => {
|
|
142
|
-
expect(formatDate(1727524853394)).toBe('2024-09-28');
|
|
143
|
-
expect(formatDate(0)).toBe('');
|
|
144
|
-
expect(formatDate(undefined)).toBe('');
|
|
145
|
-
expect(formatDate('abc')).toBe('');
|
|
146
|
-
});
|
|
147
|
-
|
|
148
|
-
it('absolutePdf prefixes relative paths and preserves absolute URLs', () => {
|
|
149
|
-
expect(absolutePdf('/pdf/abc.pdf')).toBe('https://openreview.net/pdf/abc.pdf');
|
|
150
|
-
expect(absolutePdf('http://arxiv.org/pdf/1.pdf')).toBe('http://arxiv.org/pdf/1.pdf');
|
|
151
|
-
expect(absolutePdf('https://example.com/x.pdf')).toBe('https://example.com/x.pdf');
|
|
152
|
-
expect(absolutePdf('')).toBe('');
|
|
153
|
-
expect(absolutePdf(undefined)).toBe('');
|
|
154
|
-
});
|
|
155
|
-
|
|
156
|
-
it('search throws ArgumentError on empty query', async () => {
|
|
157
|
-
const search = getRegistry().get('openreview/search');
|
|
158
|
-
await expect(search.func({ query: '', limit: 10 })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
159
|
-
await expect(search.func({ query: ' ', limit: 10 })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
160
|
-
});
|
|
161
|
-
|
|
162
|
-
it('search throws EmptyResult when API returns no notes', async () => {
|
|
163
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify({ notes: [] }), { status: 200 })));
|
|
164
|
-
const search = getRegistry().get('openreview/search');
|
|
165
|
-
await expect(search.func({ query: 'no-such-paper-xyz', limit: 5 })).rejects.toMatchObject({ code: 'EMPTY_RESULT' });
|
|
166
|
-
});
|
|
167
|
-
|
|
168
|
-
it('search wraps non-200 responses as CommandExecutionError', async () => {
|
|
169
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response('rate limited', { status: 429 })));
|
|
170
|
-
const search = getRegistry().get('openreview/search');
|
|
171
|
-
await expect(search.func({ query: 'transformer', limit: 5 })).rejects.toMatchObject({ code: 'COMMAND_EXEC' });
|
|
172
|
-
});
|
|
173
|
-
|
|
174
|
-
it('search wraps fetch network errors', async () => {
|
|
175
|
-
vi.stubGlobal('fetch', vi.fn().mockRejectedValue(new Error('ECONNRESET')));
|
|
176
|
-
const search = getRegistry().get('openreview/search');
|
|
177
|
-
await expect(search.func({ query: 'transformer', limit: 5 })).rejects.toMatchObject({
|
|
178
|
-
code: 'COMMAND_EXEC',
|
|
179
|
-
message: expect.stringContaining('Network failure'),
|
|
180
|
-
});
|
|
181
|
-
});
|
|
182
|
-
|
|
183
|
-
it('search wraps malformed JSON', async () => {
|
|
184
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response('not-json', { status: 200 })));
|
|
185
|
-
const search = getRegistry().get('openreview/search');
|
|
186
|
-
await expect(search.func({ query: 'transformer', limit: 5 })).rejects.toMatchObject({
|
|
187
|
-
code: 'COMMAND_EXEC',
|
|
188
|
-
message: expect.stringContaining('Malformed JSON'),
|
|
189
|
-
});
|
|
190
|
-
});
|
|
191
|
-
|
|
192
|
-
it('search wraps OpenReview in-band error envelopes as CommandExecutionError', async () => {
|
|
193
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify({
|
|
194
|
-
errors: [{ message: 'bad term' }],
|
|
195
|
-
}), { status: 200 })));
|
|
196
|
-
const search = getRegistry().get('openreview/search');
|
|
197
|
-
await expect(search.func({ query: 'transformer', limit: 5 })).rejects.toMatchObject({
|
|
198
|
-
code: 'COMMAND_EXEC',
|
|
199
|
-
message: expect.stringContaining('bad term'),
|
|
200
|
-
});
|
|
201
|
-
});
|
|
202
|
-
|
|
203
|
-
it('search returns rank-ordered rows with the expected shape', async () => {
|
|
204
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify({ notes: [SAMPLE_NOTE, SAMPLE_NOTE] }), { status: 200 })));
|
|
205
|
-
const search = getRegistry().get('openreview/search');
|
|
206
|
-
const rows = await search.func({ query: 'transformer', limit: 5 });
|
|
207
|
-
expect(rows).toHaveLength(2);
|
|
208
|
-
expect(rows[0]).toEqual({
|
|
209
|
-
rank: 1,
|
|
210
|
-
id: 'abc123XYZ_',
|
|
211
|
-
title: 'Test Paper Title with spaces',
|
|
212
|
-
authors: 'Alice Smith, Bob Jones',
|
|
213
|
-
venue: 'ICLR 2024 oral',
|
|
214
|
-
pdate: '2024-09-28',
|
|
215
|
-
url: 'https://openreview.net/forum?id=abc123XYZ_',
|
|
216
|
-
});
|
|
217
|
-
expect(rows[1].rank).toBe(2);
|
|
218
|
-
});
|
|
219
|
-
|
|
220
|
-
it('venue dispatches invitation vs venue-text via /-/ heuristic', async () => {
|
|
221
|
-
// Each call must return a fresh Response — bodies can only be read once.
|
|
222
|
-
const fetchMock = vi.fn().mockImplementation(() => Promise.resolve(new Response(JSON.stringify({ notes: [SAMPLE_NOTE] }), { status: 200 })));
|
|
223
|
-
vi.stubGlobal('fetch', fetchMock);
|
|
224
|
-
const venue = getRegistry().get('openreview/venue');
|
|
225
|
-
await venue.func({ venue: 'ICLR.cc/2025/Conference/-/Submission', limit: 1, offset: 0 });
|
|
226
|
-
expect(fetchMock.mock.calls[0][0]).toContain('invitation=ICLR.cc');
|
|
227
|
-
await venue.func({ venue: 'ICLR 2024 oral', limit: 1, offset: 0 });
|
|
228
|
-
expect(fetchMock.mock.calls[1][0]).toContain('content.venue=ICLR%202024%20oral');
|
|
229
|
-
});
|
|
230
|
-
|
|
231
|
-
it('venue applies offset to the rank column so paginated results stay ordered', async () => {
|
|
232
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify({ notes: [SAMPLE_NOTE, SAMPLE_NOTE] }), { status: 200 })));
|
|
233
|
-
const venue = getRegistry().get('openreview/venue');
|
|
234
|
-
const rows = await venue.func({ venue: 'ICLR 2024 oral', limit: 2, offset: 50 });
|
|
235
|
-
expect(rows[0].rank).toBe(51);
|
|
236
|
-
expect(rows[1].rank).toBe(52);
|
|
237
|
-
});
|
|
238
|
-
|
|
239
|
-
it('paper rejects invalid ids before calling the network', async () => {
|
|
240
|
-
const paper = getRegistry().get('openreview/paper');
|
|
241
|
-
await expect(paper.func({ id: '' })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
242
|
-
await expect(paper.func({ id: 'has space' })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
243
|
-
});
|
|
244
|
-
|
|
245
|
-
it('paper throws EmptyResult when the note id is unknown', async () => {
|
|
246
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify({ notes: [] }), { status: 200 })));
|
|
247
|
-
const paper = getRegistry().get('openreview/paper');
|
|
248
|
-
await expect(paper.func({ id: 'abc123XYZ_' })).rejects.toMatchObject({ code: 'EMPTY_RESULT' });
|
|
249
|
-
});
|
|
250
|
-
|
|
251
|
-
it('paper returns a single row with the full abstract intact', async () => {
|
|
252
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify({ notes: [SAMPLE_NOTE] }), { status: 200 })));
|
|
253
|
-
const paper = getRegistry().get('openreview/paper');
|
|
254
|
-
const rows = await paper.func({ id: 'abc123XYZ_' });
|
|
255
|
-
expect(rows).toHaveLength(1);
|
|
256
|
-
expect(rows[0].abstract).toBe('A long abstract with newlines.');
|
|
257
|
-
expect(rows[0].pdf).toBe('https://openreview.net/pdf/abc.pdf');
|
|
258
|
-
});
|
|
259
|
-
|
|
260
|
-
it('reviews rejects max-length below 200', async () => {
|
|
261
|
-
const reviews = getRegistry().get('openreview/reviews');
|
|
262
|
-
await expect(reviews.func({ forum: 'abc123XYZ_', 'max-length': 100 })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
263
|
-
});
|
|
264
|
-
|
|
265
|
-
it('reviews emits PAPER first then sorts by cdate, classifies invitations, and joins sections', async () => {
|
|
266
|
-
const replyReview = {
|
|
267
|
-
id: 'review1aaa',
|
|
268
|
-
forum: 'abc123XYZ_',
|
|
269
|
-
replyto: 'abc123XYZ_',
|
|
270
|
-
cdate: 1727524900000,
|
|
271
|
-
invitations: ['ICLR.cc/2025/Conference/Submission1/-/Official_Review'],
|
|
272
|
-
signatures: ['ICLR.cc/2025/Conference/Submission1/Reviewer_uVwr'],
|
|
273
|
-
content: {
|
|
274
|
-
summary: { value: 'Short summary' },
|
|
275
|
-
strengths: { value: 'Solid baselines' },
|
|
276
|
-
weaknesses: { value: 'Limited novelty' },
|
|
277
|
-
rating: { value: 5 },
|
|
278
|
-
confidence: { value: 4 },
|
|
279
|
-
},
|
|
280
|
-
};
|
|
281
|
-
const replyDecision = {
|
|
282
|
-
id: 'decision01',
|
|
283
|
-
forum: 'abc123XYZ_',
|
|
284
|
-
replyto: 'abc123XYZ_',
|
|
285
|
-
cdate: 1727525000000,
|
|
286
|
-
invitations: ['ICLR.cc/2025/Conference/-/Decision'],
|
|
287
|
-
signatures: ['ICLR.cc/2025/Conference/Program_Chairs'],
|
|
288
|
-
content: {
|
|
289
|
-
decision: { value: 'Accept (poster)' },
|
|
290
|
-
},
|
|
291
|
-
};
|
|
292
|
-
const replyMetaReview = {
|
|
293
|
-
id: 'meta000001',
|
|
294
|
-
forum: 'abc123XYZ_',
|
|
295
|
-
replyto: 'abc123XYZ_',
|
|
296
|
-
cdate: 1727524950000,
|
|
297
|
-
invitations: ['ICLR.cc/2025/Conference/Submission1/-/Meta_Review'],
|
|
298
|
-
signatures: ['ICLR.cc/2025/Conference/Area_Chair_1'],
|
|
299
|
-
content: {
|
|
300
|
-
summary: { value: 'Meta summary' },
|
|
301
|
-
},
|
|
302
|
-
};
|
|
303
|
-
vi.stubGlobal('fetch', vi.fn().mockImplementation(async (url) => {
|
|
304
|
-
const href = String(url);
|
|
305
|
-
if (href.includes('/notes?id=')) {
|
|
306
|
-
return new Response(JSON.stringify({ notes: [SAMPLE_NOTE] }), { status: 200 });
|
|
307
|
-
}
|
|
308
|
-
return new Response(JSON.stringify({ notes: [replyDecision, replyReview, { ...SAMPLE_NOTE }, replyMetaReview] }), { status: 200 });
|
|
309
|
-
}));
|
|
310
|
-
const reviews = getRegistry().get('openreview/reviews');
|
|
311
|
-
const rows = await reviews.func({ forum: 'abc123XYZ_', 'max-length': 4000 });
|
|
312
|
-
expect(rows[0].type).toBe('PAPER');
|
|
313
|
-
expect(rows.filter((row) => row.type === 'PAPER')).toHaveLength(1);
|
|
314
|
-
expect(rows[1].type).toBe('REVIEW');
|
|
315
|
-
expect(rows[1].author).toBe('Reviewer_uVwr');
|
|
316
|
-
expect(rows[1].rating).toBe('5');
|
|
317
|
-
expect(rows[1].confidence).toBe('4');
|
|
318
|
-
expect(rows[1].text).toContain('Summary: Short summary');
|
|
319
|
-
expect(rows[1].text).toContain('Strengths: Solid baselines');
|
|
320
|
-
expect(rows[2].type).toBe('META_REVIEW');
|
|
321
|
-
expect(rows[2].author).toBe('Area_Chair_1');
|
|
322
|
-
expect(rows[2].text).toContain('Summary: Meta summary');
|
|
323
|
-
expect(rows[3].type).toBe('DECISION');
|
|
324
|
-
expect(rows[3].author).toBe('Program_Chairs');
|
|
325
|
-
expect(rows[3].text).toContain('Decision: Accept (poster)');
|
|
326
|
-
});
|
|
327
|
-
|
|
328
|
-
it('reviews still emits PAPER row 0 when forum replies response omits the root note', async () => {
|
|
329
|
-
const replyReview = {
|
|
330
|
-
id: 'review1aaa',
|
|
331
|
-
forum: 'abc123XYZ_',
|
|
332
|
-
replyto: 'abc123XYZ_',
|
|
333
|
-
cdate: 1727524900000,
|
|
334
|
-
invitations: ['ICLR.cc/2025/Conference/Submission1/-/Official_Review'],
|
|
335
|
-
signatures: ['ICLR.cc/2025/Conference/Submission1/Reviewer_uVwr'],
|
|
336
|
-
content: { summary: { value: 'Short summary' } },
|
|
337
|
-
};
|
|
338
|
-
vi.stubGlobal('fetch', vi.fn().mockImplementation(async (url) => {
|
|
339
|
-
const href = String(url);
|
|
340
|
-
if (href.includes('/notes?id=')) {
|
|
341
|
-
return new Response(JSON.stringify({ notes: [SAMPLE_NOTE] }), { status: 200 });
|
|
342
|
-
}
|
|
343
|
-
return new Response(JSON.stringify({ notes: [replyReview] }), { status: 200 });
|
|
344
|
-
}));
|
|
345
|
-
const reviews = getRegistry().get('openreview/reviews');
|
|
346
|
-
const rows = await reviews.func({ forum: 'abc123XYZ_', 'max-length': 4000 });
|
|
347
|
-
expect(rows[0].type).toBe('PAPER');
|
|
348
|
-
expect(rows[0].author).toBe('');
|
|
349
|
-
expect(rows[1].type).toBe('REVIEW');
|
|
350
|
-
});
|
|
351
|
-
|
|
352
|
-
it('reviews truncates long text to max-length with ellipsis', async () => {
|
|
353
|
-
const longReview = {
|
|
354
|
-
id: 'longreview1',
|
|
355
|
-
forum: 'abc123XYZ_',
|
|
356
|
-
replyto: 'abc123XYZ_',
|
|
357
|
-
cdate: 1727524900000,
|
|
358
|
-
invitations: ['ICLR.cc/2025/Conference/Submission1/-/Official_Review'],
|
|
359
|
-
signatures: ['ICLR.cc/2025/Conference/Submission1/Reviewer_xxxx'],
|
|
360
|
-
content: { summary: { value: 'x'.repeat(5000) } },
|
|
361
|
-
};
|
|
362
|
-
vi.stubGlobal('fetch', vi.fn().mockImplementation(async (url) => {
|
|
363
|
-
const href = String(url);
|
|
364
|
-
if (href.includes('/notes?id=')) {
|
|
365
|
-
return new Response(JSON.stringify({ notes: [SAMPLE_NOTE] }), { status: 200 });
|
|
366
|
-
}
|
|
367
|
-
return new Response(JSON.stringify({ notes: [longReview] }), { status: 200 });
|
|
368
|
-
}));
|
|
369
|
-
const reviews = getRegistry().get('openreview/reviews');
|
|
370
|
-
const rows = await reviews.func({ forum: 'abc123XYZ_', 'max-length': 500 });
|
|
371
|
-
expect(rows[1].text.length).toBe(500);
|
|
372
|
-
expect(rows[1].text.endsWith('...')).toBe(true);
|
|
373
|
-
});
|
|
374
|
-
|
|
375
|
-
it('author rejects invalid profile ids before calling the network', async () => {
|
|
376
|
-
const fetchMock = vi.fn();
|
|
377
|
-
vi.stubGlobal('fetch', fetchMock);
|
|
378
|
-
const author = getRegistry().get('openreview/author');
|
|
379
|
-
await expect(author.func({ profile: 'Bo_Liu17', limit: 5 })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
380
|
-
await expect(author.func({ profile: '', limit: 5 })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
381
|
-
expect(fetchMock).not.toHaveBeenCalled();
|
|
382
|
-
});
|
|
383
|
-
|
|
384
|
-
it('author throws EmptyResult when the profile has no submissions', async () => {
|
|
385
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify({ notes: [] }), { status: 200 })));
|
|
386
|
-
const author = getRegistry().get('openreview/author');
|
|
387
|
-
await expect(author.func({ profile: '~No_Submissions1', limit: 5 })).rejects.toMatchObject({ code: 'EMPTY_RESULT' });
|
|
388
|
-
});
|
|
389
|
-
|
|
390
|
-
it('author wraps non-200 responses as CommandExecutionError', async () => {
|
|
391
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response('rate limited', { status: 429 })));
|
|
392
|
-
const author = getRegistry().get('openreview/author');
|
|
393
|
-
await expect(author.func({ profile: '~Bo_Liu17', limit: 5 })).rejects.toMatchObject({ code: 'COMMAND_EXEC' });
|
|
394
|
-
});
|
|
395
|
-
|
|
396
|
-
it('author wraps fetch network errors as CommandExecutionError', async () => {
|
|
397
|
-
vi.stubGlobal('fetch', vi.fn().mockRejectedValue(new Error('ECONNRESET')));
|
|
398
|
-
const author = getRegistry().get('openreview/author');
|
|
399
|
-
await expect(author.func({ profile: '~Bo_Liu17', limit: 5 })).rejects.toMatchObject({
|
|
400
|
-
code: 'COMMAND_EXEC',
|
|
401
|
-
message: expect.stringContaining('Network failure'),
|
|
402
|
-
});
|
|
403
|
-
});
|
|
404
|
-
|
|
405
|
-
it('author hits /notes?content.authorids and returns rank-ordered rows', async () => {
|
|
406
|
-
const fetchMock = vi.fn().mockResolvedValue(new Response(JSON.stringify({ notes: [SAMPLE_NOTE, SAMPLE_NOTE] }), { status: 200 }));
|
|
407
|
-
vi.stubGlobal('fetch', fetchMock);
|
|
408
|
-
const author = getRegistry().get('openreview/author');
|
|
409
|
-
const rows = await author.func({ profile: '~Bo_Liu17', limit: 50 });
|
|
410
|
-
expect(rows).toHaveLength(2);
|
|
411
|
-
expect(rows[0]).toEqual({
|
|
412
|
-
rank: 1,
|
|
413
|
-
id: 'abc123XYZ_',
|
|
414
|
-
title: 'Test Paper Title with spaces',
|
|
415
|
-
authors: 'Alice Smith, Bob Jones',
|
|
416
|
-
venue: 'ICLR 2024 oral',
|
|
417
|
-
pdate: '2024-09-28',
|
|
418
|
-
url: 'https://openreview.net/forum?id=abc123XYZ_',
|
|
419
|
-
});
|
|
420
|
-
expect(rows[1].rank).toBe(2);
|
|
421
|
-
// Confirm the request shape: canonical authorids filter + cdate sort.
|
|
422
|
-
const url = fetchMock.mock.calls[0][0];
|
|
423
|
-
expect(url).toContain('content.authorids=');
|
|
424
|
-
expect(url).toContain(encodeURIComponent('~Bo_Liu17'));
|
|
425
|
-
expect(url).toContain('sort=cdate:desc');
|
|
426
|
-
});
|
|
427
|
-
});
|