summaryrefslogtreecommitdiff
path: root/internal/models/atom_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/models/atom_test.go')
-rw-r--r--internal/models/atom_test.go34
1 files changed, 34 insertions, 0 deletions
diff --git a/internal/models/atom_test.go b/internal/models/atom_test.go
index 3ed4774..70bc14b 100644
--- a/internal/models/atom_test.go
+++ b/internal/models/atom_test.go
@@ -134,6 +134,40 @@ func TestAtom_ComputeUIFields(t *testing.T) {
}
})
+ // Tasks due within 7 days should NOT be IsFuture (shown in main section with dates)
+ t.Run("tomorrow is not future", func(t *testing.T) {
+ tz := time.UTC
+ now := time.Now().In(tz)
+ tomorrow := time.Date(now.Year(), now.Month(), now.Day()+1, 0, 0, 0, 0, tz)
+ atom := Atom{DueDate: &tomorrow}
+ atom.ComputeUIFields()
+ if atom.IsFuture {
+ t.Error("Task due tomorrow should not be IsFuture — it should appear in main tasks section with its date visible")
+ }
+ })
+
+ t.Run("6 days out is not future", func(t *testing.T) {
+ tz := time.UTC
+ now := time.Now().In(tz)
+ sixDays := time.Date(now.Year(), now.Month(), now.Day()+6, 0, 0, 0, 0, tz)
+ atom := Atom{DueDate: &sixDays}
+ atom.ComputeUIFields()
+ if atom.IsFuture {
+ t.Error("Task due in 6 days should not be IsFuture")
+ }
+ })
+
+ t.Run("8 days out is future", func(t *testing.T) {
+ tz := time.UTC
+ now := time.Now().In(tz)
+ eightDays := time.Date(now.Year(), now.Month(), now.Day()+8, 0, 0, 0, 0, tz)
+ atom := Atom{DueDate: &eightDays}
+ atom.ComputeUIFields()
+ if !atom.IsFuture {
+ t.Error("Task due in 8 days should be IsFuture")
+ }
+ })
+
// Test with due date at midnight (no specific time)
t.Run("midnight due date", func(t *testing.T) {
now := time.Now()