some FT renames for readability; added natus form to My Sky applet
All checks were successful
ci/woodpecker/push/pyswiss Pipeline was successful
ci/woodpecker/push/main Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-04-17 22:30:11 -04:00
parent 8a24021739
commit 7c03bded8d
8 changed files with 441 additions and 5 deletions

View File

@@ -5,6 +5,8 @@ natus (natal chart) interface where the user can save their personal sky
to their account (stored on the User model, independent of any game room).
"""
import json as _json
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.by import By
@@ -198,3 +200,102 @@ class MySkyAppletWheelTest(FunctionalTest):
.value_of_css_property("display"),
"block",
))
class MySkyAppletFormTest(FunctionalTest):
"""My Sky applet shows natus entry form when no sky data is saved."""
def setUp(self):
super().setUp()
Applet.objects.get_or_create(
slug="my-sky",
defaults={"name": "My Sky", "grid_cols": 6, "grid_rows": 6, "context": "dashboard"},
)
self.gamer = User.objects.create(email="stargazer@test.io")
# ── T4 ───────────────────────────────────────────────────────────────────
def test_applet_shows_entry_form_when_no_sky_saved(self):
"""When no sky data is saved the My Sky applet shows all natus form
fields and a disabled SAVE SKY button; no wheel is drawn yet."""
self.create_pre_authenticated_session("stargazer@test.io")
self.browser.get(self.live_server_url)
applet = self.wait_for(
lambda: self.browser.find_element(By.ID, "id_applet_my_sky")
)
applet.find_element(By.ID, "id_nf_date")
applet.find_element(By.ID, "id_nf_time")
applet.find_element(By.ID, "id_nf_place")
applet.find_element(By.ID, "id_nf_lat")
applet.find_element(By.ID, "id_nf_lon")
applet.find_element(By.ID, "id_nf_tz")
applet.find_element(By.ID, "id_natus_confirm")
self.assertFalse(applet.find_elements(By.CSS_SELECTOR, ".nw-root"))
# ── T5 ───────────────────────────────────────────────────────────────────
def test_applet_form_disappears_and_wheel_draws_after_save(self):
"""Filling the applet form and clicking SAVE SKY hides the form wrap
and draws the natal wheel in its place."""
self.create_pre_authenticated_session("stargazer@test.io")
self.browser.get(self.live_server_url)
self.wait_for(
lambda: self.browser.find_element(By.ID, "id_applet_sky_form_wrap")
)
# Mock fetch: preview → chart fixture; save → {saved: true}
self.browser.execute_script("""
const FIXTURE = """ + _json.dumps(_CHART_FIXTURE) + """;
window._origFetch = window.fetch;
window.fetch = function(url, opts) {
if (url.includes('/sky/preview/')) {
return Promise.resolve({
ok: true,
json: () => Promise.resolve(FIXTURE),
});
}
if (url.includes('/sky/save/')) {
return Promise.resolve({
ok: true,
json: () => Promise.resolve({saved: true}),
});
}
return window._origFetch(url, opts);
};
""")
# Fill required fields and fire input to trigger schedulePreview
self.browser.execute_script("""
document.getElementById('id_nf_date').value = '1990-06-15';
document.getElementById('id_nf_lat').value = '51.5074';
document.getElementById('id_nf_lon').value = '-0.1278';
document.getElementById('id_nf_tz').value = 'Europe/London';
document.getElementById('id_nf_date').dispatchEvent(
new Event('input', {bubbles: true})
);
""")
# Wait for confirm button to be enabled (preview resolved)
confirm_btn = self.browser.find_element(By.ID, "id_natus_confirm")
self.wait_for(lambda: self.assertIsNone(
confirm_btn.get_attribute("disabled")
))
confirm_btn.click()
# Form wrap should become hidden
form_wrap = self.browser.find_element(By.ID, "id_applet_sky_form_wrap")
self.wait_for(lambda: self.assertEqual(
form_wrap.value_of_css_property("display"), "none"
))
# Natal wheel should be drawn inside the applet
self.wait_for(lambda: self.assertTrue(
self.browser.find_element(
By.CSS_SELECTOR, "#id_applet_my_sky .nw-root"
)
))