wip
This commit is contained in:
parent
65d8ec66ef
commit
8255c4b18b
|
@ -50,19 +50,19 @@ func (add *AddCmd) Parse(args []string) (*ArgSet, error) {
|
||||||
if !as.HasFlag(FlagAt) && !as.HasFlag(FlagFor) {
|
if !as.HasFlag(FlagAt) && !as.HasFlag(FlagFor) {
|
||||||
as.SetFlag(FlagFor, "24h")
|
as.SetFlag(FlagFor, "24h")
|
||||||
}
|
}
|
||||||
if err := add.Action(as); err != nil {
|
if err := add.Do(as); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return as, nil
|
return as, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (add *AddCmd) Action(as *ArgSet) error {
|
func (add *AddCmd) Do(as *ArgSet) error {
|
||||||
startFormat := "2006-01-02"
|
startFormat := "2006-01-02"
|
||||||
startStr := flags["on"]
|
startStr := as.Flag(FlagOn)
|
||||||
if at, okAt := flags["at"]; !okAt {
|
if as.HasFlag(FlagAt) {
|
||||||
startFormat = fmt.Sprintf("%s 15:04", startFormat)
|
startFormat = fmt.Sprintf("%s 15:04", startFormat)
|
||||||
startStr = fmt.Sprintf("%s %s", startStr, at)
|
startStr = fmt.Sprintf("%s %s", startStr, as.Flag(FlagAt))
|
||||||
}
|
}
|
||||||
start, err := time.Parse(startFormat, startStr)
|
start, err := time.Parse(startFormat, startStr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -72,13 +72,13 @@ func (add *AddCmd) Action(as *ArgSet) error {
|
||||||
e := item.Event{
|
e := item.Event{
|
||||||
ID: uuid.New().String(),
|
ID: uuid.New().String(),
|
||||||
EventBody: item.EventBody{
|
EventBody: item.EventBody{
|
||||||
Title: title,
|
Title: as.Main,
|
||||||
Start: start,
|
Start: start,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
if forStr, okFor := flags["for"]; okFor {
|
if as.HasFlag(FlagFor) {
|
||||||
fr, err := time.ParseDuration(forStr)
|
fr, err := time.ParseDuration(as.Flag(FlagFor))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("%w: could not parse duration: %s", ErrInvalidArg, err)
|
return fmt.Errorf("%w: could not parse duration: %s", ErrInvalidArg, err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,153 +1,143 @@
|
||||||
package command_test
|
package command_test
|
||||||
|
|
||||||
import (
|
// func TestAdd(t *testing.T) {
|
||||||
"testing"
|
// t.Parallel()
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/google/go-cmp/cmp"
|
// oneHour, err := time.ParseDuration("1h")
|
||||||
"go-mod.ewintr.nl/planner/item"
|
// if err != nil {
|
||||||
"go-mod.ewintr.nl/planner/plan/command"
|
// t.Errorf("exp nil, got %v", err)
|
||||||
"go-mod.ewintr.nl/planner/plan/storage/memory"
|
// }
|
||||||
)
|
// oneDay, err := time.ParseDuration("24h")
|
||||||
|
// if err != nil {
|
||||||
|
// t.Errorf("exp nil, got %v", err)
|
||||||
|
// }
|
||||||
|
|
||||||
func TestAdd(t *testing.T) {
|
// for _, tc := range []struct {
|
||||||
t.Parallel()
|
// name string
|
||||||
|
// args map[string]string
|
||||||
|
// expEvent item.Event
|
||||||
|
// expErr bool
|
||||||
|
// }{
|
||||||
|
// {
|
||||||
|
// name: "no name",
|
||||||
|
// args: map[string]string{
|
||||||
|
// "on": "2024-10-01",
|
||||||
|
// "at": "9:00",
|
||||||
|
// "for": "1h",
|
||||||
|
// },
|
||||||
|
// expErr: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: "no date",
|
||||||
|
// args: map[string]string{
|
||||||
|
// "name": "event",
|
||||||
|
// "at": "9:00",
|
||||||
|
// "for": "1h",
|
||||||
|
// },
|
||||||
|
// expErr: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: "duration, but no time",
|
||||||
|
// args: map[string]string{
|
||||||
|
// "name": "event",
|
||||||
|
// "on": "2024-10-01",
|
||||||
|
// "for": "1h",
|
||||||
|
// },
|
||||||
|
// expErr: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: "time, but no duration",
|
||||||
|
// args: map[string]string{
|
||||||
|
// "name": "event",
|
||||||
|
// "on": "2024-10-01",
|
||||||
|
// "at": "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: map[string]string{
|
||||||
|
// "name": "event",
|
||||||
|
// "on": "2024-10-01",
|
||||||
|
// },
|
||||||
|
// 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: map[string]string{
|
||||||
|
// "name": "event",
|
||||||
|
// "on": "2024-10-01",
|
||||||
|
// "at": "9:00",
|
||||||
|
// "for": "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()
|
||||||
|
// actErr := command.Add(localRepo, eventRepo, syncRepo, tc.args["name"], tc.args["on"], tc.args["at"], tc.args["for"]) != 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))
|
||||||
|
// }
|
||||||
|
|
||||||
oneHour, err := time.ParseDuration("1h")
|
// actLocalIDs, err := localRepo.FindAll()
|
||||||
if err != nil {
|
// if err != nil {
|
||||||
t.Errorf("exp nil, got %v", err)
|
// t.Errorf("exp nil, got %v", err)
|
||||||
}
|
// }
|
||||||
oneDay, err := time.ParseDuration("24h")
|
// if len(actLocalIDs) != 1 {
|
||||||
if err != nil {
|
// t.Errorf("exp 1, got %v", len(actLocalIDs))
|
||||||
t.Errorf("exp nil, got %v", err)
|
// }
|
||||||
}
|
// if _, ok := actLocalIDs[actEvents[0].ID]; !ok {
|
||||||
|
// t.Errorf("exp true, got %v", ok)
|
||||||
|
// }
|
||||||
|
|
||||||
for _, tc := range []struct {
|
// if actEvents[0].ID == "" {
|
||||||
name string
|
// t.Errorf("exp string not te be empty")
|
||||||
args map[string]string
|
// }
|
||||||
expEvent item.Event
|
// tc.expEvent.ID = actEvents[0].ID
|
||||||
expErr bool
|
// if diff := cmp.Diff(tc.expEvent, actEvents[0]); diff != "" {
|
||||||
}{
|
// t.Errorf("(exp +, got -)\n%s", diff)
|
||||||
{
|
// }
|
||||||
name: "no name",
|
|
||||||
args: map[string]string{
|
|
||||||
"on": "2024-10-01",
|
|
||||||
"at": "9:00",
|
|
||||||
"for": "1h",
|
|
||||||
},
|
|
||||||
expErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "no date",
|
|
||||||
args: map[string]string{
|
|
||||||
"name": "event",
|
|
||||||
"at": "9:00",
|
|
||||||
"for": "1h",
|
|
||||||
},
|
|
||||||
expErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "duration, but no time",
|
|
||||||
args: map[string]string{
|
|
||||||
"name": "event",
|
|
||||||
"on": "2024-10-01",
|
|
||||||
"for": "1h",
|
|
||||||
},
|
|
||||||
expErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "time, but no duration",
|
|
||||||
args: map[string]string{
|
|
||||||
"name": "event",
|
|
||||||
"on": "2024-10-01",
|
|
||||||
"at": "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: map[string]string{
|
|
||||||
"name": "event",
|
|
||||||
"on": "2024-10-01",
|
|
||||||
},
|
|
||||||
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: map[string]string{
|
|
||||||
"name": "event",
|
|
||||||
"on": "2024-10-01",
|
|
||||||
"at": "9:00",
|
|
||||||
"for": "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()
|
|
||||||
actErr := command.Add(localRepo, eventRepo, syncRepo, tc.args["name"], tc.args["on"], tc.args["at"], tc.args["for"]) != 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))
|
|
||||||
}
|
|
||||||
|
|
||||||
actLocalIDs, err := localRepo.FindAll()
|
// updated, err := syncRepo.FindAll()
|
||||||
if err != nil {
|
// if err != nil {
|
||||||
t.Errorf("exp nil, got %v", err)
|
// t.Errorf("exp nil, got %v", err)
|
||||||
}
|
// }
|
||||||
if len(actLocalIDs) != 1 {
|
// if len(updated) != 1 {
|
||||||
t.Errorf("exp 1, got %v", len(actLocalIDs))
|
// t.Errorf("exp 1, got %v", len(updated))
|
||||||
}
|
// }
|
||||||
if _, ok := actLocalIDs[actEvents[0].ID]; !ok {
|
// })
|
||||||
t.Errorf("exp true, got %v", ok)
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
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)
|
|
||||||
}
|
|
||||||
|
|
||||||
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))
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -2,24 +2,85 @@ package command_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/google/go-cmp/cmp"
|
||||||
|
"go-mod.ewintr.nl/planner/plan/command"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func TestArgSet(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
as := command.ArgSet{
|
||||||
|
Main: "main",
|
||||||
|
Flags: map[string]string{
|
||||||
|
"name 1": "value 1",
|
||||||
|
"name 2": "value 2",
|
||||||
|
"name 3": "value 3",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
t.Run("hasflag", func(t *testing.T) {
|
||||||
|
t.Run("true", func(t *testing.T) {
|
||||||
|
if has := as.HasFlag("name 1"); !has {
|
||||||
|
t.Errorf("exp true, got %v", has)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
t.Run("false", func(t *testing.T) {
|
||||||
|
if has := as.HasFlag("unknown"); has {
|
||||||
|
t.Errorf("exp false, got %v", has)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("flag", func(t *testing.T) {
|
||||||
|
t.Run("known", func(t *testing.T) {
|
||||||
|
if val := as.Flag("name 1"); val != "value 1" {
|
||||||
|
t.Errorf("exp value 1, got %v", val)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
t.Run("unknown", func(t *testing.T) {
|
||||||
|
if val := as.Flag("unknown"); val != "" {
|
||||||
|
t.Errorf(`exp "", got %v`, val)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("setflag", func(t *testing.T) {
|
||||||
|
exp := "new value"
|
||||||
|
as.SetFlag("new name", exp)
|
||||||
|
if act := as.Flag("new name"); exp != act {
|
||||||
|
t.Errorf("exp %v, got %v", exp, act)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func TestParseArgs(t *testing.T) {
|
func TestParseArgs(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
||||||
for _, tc := range []struct {
|
for _, tc := range []struct {
|
||||||
name string
|
name string
|
||||||
args []string
|
args []string
|
||||||
expRem string
|
expAS *command.ArgSet
|
||||||
expFlags map[string]string
|
expErr bool
|
||||||
expErr bool
|
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
name: "empty",
|
name: "empty",
|
||||||
|
expAS: &command.ArgSet{
|
||||||
|
Flags: map[string]string{},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
} {
|
} {
|
||||||
t.Run(tc.name, func(t *testing.T) {
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
|
actAS, actErr := command.ParseArgs(tc.args)
|
||||||
|
if tc.expErr != (actErr != nil) {
|
||||||
|
t.Errorf("exp %v, got %v", tc.expErr, actErr)
|
||||||
|
}
|
||||||
|
if tc.expErr {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if diff := cmp.Diff(tc.expAS, actAS); diff != "" {
|
||||||
|
t.Errorf("(exp +, got -)\n%s", diff)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue