feat(config): wire /config/update + /config/update_challenge_config (closes family 4/4)
is_skip_gacha_effect, use_challenge_two_pick_premium_card, and challenge_two_pick_sleeve_id all persist on ViewerInfo and round-trip through /load/index. The two challenge fields move from the global ChallengeConfig section to ViewerInfo — they're viewer preferences, not server-wide policy. Premium card defaults to 0; sleeve falls back to DefaultLoadoutConfig.SleeveId (3000011) when unset. MatchContextBuilder's TK2 sleeve read switches to the same viewer-scoped path. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -53,4 +53,74 @@ public class ConfigControllerPreferencesTests
|
||||
var cfg = doc.RootElement.GetProperty("user_config");
|
||||
Assert.That(cfg.GetProperty("is_prize_preferred").GetInt32(), Is.EqualTo(1));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public async Task Update_persists_is_skip_gacha_effect_and_appears_in_load_index()
|
||||
{
|
||||
using var factory = new SVSimTestFactory();
|
||||
long viewerId = await factory.SeedViewerAsync(tutorialState: 0);
|
||||
using var client = factory.CreateAuthenticatedClient(viewerId);
|
||||
|
||||
var setJson = """{"is_skip_gacha_effect":1,"viewer_id":"0","steam_id":0,"steam_session_ticket":""}""";
|
||||
var setResp = await client.PostAsync("/config/update",
|
||||
new StringContent(setJson, Encoding.UTF8, "application/json"));
|
||||
var setBody = await setResp.Content.ReadAsStringAsync();
|
||||
Assert.That(setResp.StatusCode, Is.EqualTo(HttpStatusCode.OK), setBody);
|
||||
|
||||
var loadJson = """{"viewer_id":"0","steam_id":0,"steam_session_ticket":"","carrier":"none","card_master_hash":""}""";
|
||||
var loadResp = await client.PostAsync("/load/index",
|
||||
new StringContent(loadJson, Encoding.UTF8, "application/json"));
|
||||
var body = await loadResp.Content.ReadAsStringAsync();
|
||||
Assert.That(loadResp.StatusCode, Is.EqualTo(HttpStatusCode.OK), body);
|
||||
|
||||
using var doc = JsonDocument.Parse(body);
|
||||
var cfg = doc.RootElement.GetProperty("user_config");
|
||||
Assert.That(cfg.GetProperty("is_skip_gacha_effect").GetInt32(), Is.EqualTo(1), body);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public async Task UpdateChallengeConfig_round_trips_through_load_index()
|
||||
{
|
||||
using var factory = new SVSimTestFactory();
|
||||
long viewerId = await factory.SeedViewerAsync(tutorialState: 0);
|
||||
using var client = factory.CreateAuthenticatedClient(viewerId);
|
||||
|
||||
var setJson = """{"use_challenge_two_pick_premium_card":1,"challenge_two_pick_sleeve_id":3000099,"viewer_id":"0","steam_id":0,"steam_session_ticket":""}""";
|
||||
var setResp = await client.PostAsync("/config/update_challenge_config",
|
||||
new StringContent(setJson, Encoding.UTF8, "application/json"));
|
||||
var setBody = await setResp.Content.ReadAsStringAsync();
|
||||
Assert.That(setResp.StatusCode, Is.EqualTo(HttpStatusCode.OK), setBody);
|
||||
|
||||
var loadJson = """{"viewer_id":"0","steam_id":0,"steam_session_ticket":"","carrier":"none","card_master_hash":""}""";
|
||||
var loadResp = await client.PostAsync("/load/index",
|
||||
new StringContent(loadJson, Encoding.UTF8, "application/json"));
|
||||
var body = await loadResp.Content.ReadAsStringAsync();
|
||||
Assert.That(loadResp.StatusCode, Is.EqualTo(HttpStatusCode.OK), body);
|
||||
|
||||
using var doc = JsonDocument.Parse(body);
|
||||
var challenge = doc.RootElement.GetProperty("challenge_config");
|
||||
Assert.That(challenge.GetProperty("use_challenge_two_pick_premium_card").GetInt32(), Is.EqualTo(1), body);
|
||||
Assert.That(challenge.GetProperty("challenge_two_pick_sleeve_id").GetInt32(), Is.EqualTo(3000099), body);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public async Task LoadIndex_challenge_config_falls_back_to_default_sleeve_when_viewer_unset()
|
||||
{
|
||||
// Fresh viewer never touched /config/update_challenge_config — premium card defaults
|
||||
// to 0 and sleeve falls back to DefaultLoadoutConfig.SleeveId (3000011).
|
||||
using var factory = new SVSimTestFactory();
|
||||
long viewerId = await factory.SeedViewerAsync(tutorialState: 0);
|
||||
using var client = factory.CreateAuthenticatedClient(viewerId);
|
||||
|
||||
var loadJson = """{"viewer_id":"0","steam_id":0,"steam_session_ticket":"","carrier":"none","card_master_hash":""}""";
|
||||
var loadResp = await client.PostAsync("/load/index",
|
||||
new StringContent(loadJson, Encoding.UTF8, "application/json"));
|
||||
var body = await loadResp.Content.ReadAsStringAsync();
|
||||
Assert.That(loadResp.StatusCode, Is.EqualTo(HttpStatusCode.OK), body);
|
||||
|
||||
using var doc = JsonDocument.Parse(body);
|
||||
var challenge = doc.RootElement.GetProperty("challenge_config");
|
||||
Assert.That(challenge.GetProperty("use_challenge_two_pick_premium_card").GetInt32(), Is.EqualTo(0), body);
|
||||
Assert.That(challenge.GetProperty("challenge_two_pick_sleeve_id").GetInt32(), Is.EqualTo(3000011), body);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user