planner/plan/command/add_test.go

224 lines
5.1 KiB
Go
Raw Normal View History

2024-10-01 07:36:31 +02:00
package command_test
2024-11-09 17:22:05 +01:00
import (
"testing"
"go-mod.ewintr.nl/planner/plan/command"
2024-11-10 15:04:14 +01:00
"go-mod.ewintr.nl/planner/plan/storage/memory"
2024-11-09 17:22:05 +01:00
)
func TestAddParse(t *testing.T) {
t.Parallel()
2024-11-14 07:31:50 +01:00
aDateStr := "2024-11-02"
2024-11-15 07:25:23 +01:00
// aDate := time.Date(2024, 11, 9, 0, 0, 0, 0, time.UTC)
2024-11-14 07:31:50 +01:00
aTimeStr := "12:00"
2024-11-15 07:25:23 +01:00
// aTime := time.Date(0, 0, 0, 12, 0, 0, 0, time.UTC)
// aDayStr := "24h"
// aDay := time.Duration(24) * time.Hour
2024-11-14 07:31:50 +01:00
2024-11-15 07:25:23 +01:00
// flagOn := &command.FlagDate{
// Name: command.FlagOn,
// Value: aDate,
// }
// flagAt := &command.FlagTime{
// Name: command.FlagAt,
// Value: aTime,
// }
// flagFor := &command.FlagDuration{
// Name: command.FlagFor,
// Value: aDay,
// }
2024-11-14 07:31:50 +01:00
2024-11-15 07:25:23 +01:00
eventRepo := memory.NewEvent()
localRepo := memory.NewLocalID()
syncRepo := memory.NewSync()
cmd := command.NewAddCmd(localRepo, eventRepo, syncRepo)
2024-11-09 17:22:05 +01:00
for _, tc := range []struct {
name string
2024-11-14 07:31:50 +01:00
main []string
2024-11-15 07:25:23 +01:00
flags map[string]string
2024-11-09 17:22:05 +01:00
expErr bool
}{
{
name: "empty",
expErr: true,
},
{
2024-11-14 07:31:50 +01:00
name: "title missing",
main: []string{"add"},
2024-11-15 07:25:23 +01:00
flags: map[string]string{
command.FlagOn: aDateStr,
2024-11-14 07:31:50 +01:00
},
2024-11-09 17:22:05 +01:00
expErr: true,
},
{
name: "date missing",
2024-11-14 07:31:50 +01:00
main: []string{"add", "some", "title"},
2024-11-09 17:22:05 +01:00
expErr: true,
},
{
name: "minimal",
2024-11-14 07:31:50 +01:00
main: []string{"add", "title"},
2024-11-15 07:25:23 +01:00
flags: map[string]string{
command.FlagOn: aDateStr,
2024-11-09 17:22:05 +01:00
},
},
{
name: "start",
2024-11-14 07:31:50 +01:00
main: []string{"add", "title"},
2024-11-15 07:25:23 +01:00
flags: map[string]string{
command.FlagOn: aDateStr,
command.FlagAt: aTimeStr,
2024-11-09 17:22:05 +01:00
},
},
2024-11-14 07:31:50 +01:00
// {
// name: "start and duration",
// args: []string{"add", "title", "-on", "2024-11-10", "-at", "12:00", "-for", "1h"},
// expAS: &command.ArgSet{
// Main: "title",
// Flags: map[string]string{
// command.FlagOn: "2024-11-10",
// command.FlagAt: "12:00",
// command.FlagFor: "1h",
// },
// },
// },
// {
// name: "start without duration",
// args: []string{"add", "title", "-on", "2024-11-10", "-for", "1h"},
// expErr: true,
// },
2024-11-09 17:22:05 +01:00
} {
t.Run(tc.name, func(t *testing.T) {
2024-11-14 07:31:50 +01:00
actErr := cmd.Parse(tc.main, tc.flags)
2024-11-09 17:22:05 +01:00
if tc.expErr != (actErr != nil) {
t.Errorf("exp nil, got %v", actErr)
}
})
}
}
2024-11-15 07:25:23 +01:00
// func TestAdd(t *testing.T) {
// t.Parallel()
2024-10-01 07:36:31 +02:00
2024-11-15 07:25:23 +01:00
// oneHour, err := time.ParseDuration("1h")
// if err != nil {
// t.Errorf("exp nil, got %v", err)
// }
// oneDay, err := time.ParseDuration("24h")
// if err != nil {
// t.Errorf("exp nil, got %v", err)
// }
2024-10-01 07:36:31 +02:00
2024-11-15 07:25:23 +01:00
// for _, tc := range []struct {
// name string
// args *command.ArgSet
// expEvent item.Event
// expErr bool
// }{
// {
// name: "time, but no duration",
// args: &command.ArgSet{
// Main: "event",
// Flags: map[string]string{
// command.FlagOn: "2024-10-01",
// command.FlagAt: "9:00",
// },
// },
// expEvent: item.Event{
// ID: "a",
// EventBody: item.EventBody{
// Title: "event",
// Start: time.Date(2024, 10, 1, 9, 0, 0, 0, time.UTC),
// },
// },
// },
// {
// name: "no time, no duration",
// args: &command.ArgSet{
// Main: "event",
// Flags: map[string]string{
// command.FlagOn: "2024-10-01",
// command.FlagFor: "24h",
// },
// },
// expEvent: item.Event{
// ID: "a",
// EventBody: item.EventBody{
// Title: "event",
// Start: time.Date(2024, 10, 1, 0, 0, 0, 0, time.UTC),
// Duration: oneDay,
// },
// },
// },
// {
// name: "full",
// args: &command.ArgSet{
// Main: "event",
// Flags: map[string]string{
// command.FlagOn: "2024-10-01",
// command.FlagAt: "9:00",
// command.FlagFor: "1h",
// },
// },
// expEvent: item.Event{
// ID: "a",
// EventBody: item.EventBody{
// Title: "event",
// Start: time.Date(2024, 10, 1, 9, 0, 0, 0, time.UTC),
// Duration: oneHour,
// },
// },
// },
// } {
// t.Run(tc.name, func(t *testing.T) {
// eventRepo := memory.NewEvent()
// localRepo := memory.NewLocalID()
// syncRepo := memory.NewSync()
// cmd := command.NewAddCmd(localRepo, eventRepo, syncRepo)
// actErr := cmd.Do(tc.args) != nil
// if tc.expErr != actErr {
// t.Errorf("exp %v, got %v", tc.expErr, actErr)
// }
// if tc.expErr {
// return
// }
// actEvents, err := eventRepo.FindAll()
// if err != nil {
// t.Errorf("exp nil, got %v", err)
// }
// if len(actEvents) != 1 {
// t.Errorf("exp 1, got %d", len(actEvents))
// }
2024-10-01 07:36:31 +02:00
2024-11-15 07:25:23 +01:00
// actLocalIDs, err := localRepo.FindAll()
// if err != nil {
// t.Errorf("exp nil, got %v", err)
// }
// if len(actLocalIDs) != 1 {
// t.Errorf("exp 1, got %v", len(actLocalIDs))
// }
// if _, ok := actLocalIDs[actEvents[0].ID]; !ok {
// t.Errorf("exp true, got %v", ok)
// }
2024-10-01 07:36:31 +02:00
2024-11-15 07:25:23 +01:00
// if actEvents[0].ID == "" {
// t.Errorf("exp string not te be empty")
// }
// tc.expEvent.ID = actEvents[0].ID
// if diff := cmp.Diff(tc.expEvent, actEvents[0]); diff != "" {
// t.Errorf("(exp +, got -)\n%s", diff)
// }
2024-10-03 07:32:48 +02:00
2024-11-15 07:25:23 +01:00
// updated, err := syncRepo.FindAll()
// if err != nil {
// t.Errorf("exp nil, got %v", err)
// }
// if len(updated) != 1 {
// t.Errorf("exp 1, got %v", len(updated))
// }
// })
// }
// }