Commit bfc9936
feat: add queryTeamUsageStats API for multi-tenant metrics (#236)
* add team usage stats api support
* fix: exclude null fields from team usage stats request JSON
Add @JsonInclude(NON_NULL) to prevent Jackson from serializing null
values in the request body, which was causing 404 errors from the API.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* test: add strict integration tests for Team Usage Stats API
Add TeamUsageStatsIntegrationTest with:
- Strict data correctness tests for sdk-test-team-1/2/3
- Verifies exact values for all 16 metrics
- Uses dedicated credentials (STREAM_USAGE_STATS_KEY/SECRET)
- Queries fixed date range (2026-02-17 to 2026-02-18)
- Catches API/SDK regressions by asserting exact values
Also refactor TeamUsageStatsTest to require at least one team
in response structure validation.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* test: add exact data verification for all query types
Expand strict data correctness tests to cover ALL query methods:
- Date range query (startDate/endDate)
- Month query (month parameter)
- No parameters query (default)
- Pagination query (limit + next cursor)
Each query type verifies exact values for all 16 metrics on
sdk-test-team-1, sdk-test-team-2, sdk-test-team-3.
Total: 34 integration tests for Team Usage Stats API.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* style: fix spotless formatting
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Use STREAM_MULTI_TENANT_KEY/SECRET for team usage stats tests
- Rename env vars from STREAM_USAGE_STATS_* to STREAM_MULTI_TENANT_*
- Remove fallback to STREAM_KEY/STREAM_SECRET
- Fail explicitly with clear error message when credentials are missing
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Fix CI failures for team usage stats tests
- Add STREAM_MULTI_TENANT_KEY/SECRET env vars to CI workflow
- Fix TeamUsageStatsTest to not require data when account has no multi-tenant data
(strict data verification is in TeamUsageStatsIntegrationTest)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* fix: restore original client after TeamUsageStatsIntegrationTest
The test was setting the global DefaultClient singleton to use
multi-tenant credentials but never restoring it. This caused
subsequent tests (like UserTest.canCreateGuestUser) to fail
because guest access is disabled for multi-tenant apps.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* refactor: simplify TeamUsageStatsTest for non-multi-tenant app
The regular test app doesn't have multi-tenant enabled, so teams
will always be empty. Removed dead code inside if-blocks that
would never execute and added explicit assertions that teams is empty.
Full data verification is done in TeamUsageStatsIntegrationTest
with dedicated multi-tenant credentials.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* resolve comments: remove hardcoded metric count, simplify tests
- Remove "16 metrics" from javadoc (implementation detail)
- Simplify TeamUsageStatsTest for non-multi-tenant app
- Restore original client after TeamUsageStatsIntegrationTest
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
---------
Co-authored-by: Daksh <daksh.rinwan@getstream.io>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>1 parent 39b3b42 commit bfc9936
File tree
5 files changed
+880
-0
lines changed- .github/workflows
- src
- main/java/io/getstream/chat/java
- models
- services
- test/java/io/getstream/chat/java
5 files changed
+880
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| 23 | + | |
| 24 | + | |
23 | 25 | | |
24 | 26 | | |
25 | 27 | | |
| |||
Lines changed: 233 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
| 232 | + | |
| 233 | + | |
Lines changed: 14 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
0 commit comments