本文整理汇总了Golang中github.com/jungju/go-todo/client.TodoClient.GetAllTodos方法的典型用法代码示例。如果您正苦于以下问题:Golang TodoClient.GetAllTodos方法的具体用法?Golang TodoClient.GetAllTodos怎么用?Golang TodoClient.GetAllTodos使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/jungju/go-todo/client.TodoClient
的用法示例。
在下文中一共展示了TodoClient.GetAllTodos方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestGetAllTodos
func TestGetAllTodos(t *testing.T) {
// given
client := client.TodoClient{Host: "http://localhost:8080"}
client.CreateTodo("foo", "bar")
client.CreateTodo("baz", "bing")
// when
todos, err := client.GetAllTodos()
// then
if err != nil {
t.Error(err)
}
if len(todos) != 2 {
t.Errorf("wrong number of todos: %d", len(todos))
}
if todos[0].Title != "foo" && todos[0].Description != "bar" {
t.Error("returned todo not right")
}
if todos[1].Title != "baz" && todos[1].Description != "bing" {
t.Error("returned todo not right")
}
// cleanup
_ = client.DeleteTodo(todos[0].Id)
_ = client.DeleteTodo(todos[1].Id)
}
示例2: main
func main() {
app := cli.NewApp()
app.Name = "todo cli"
app.Usage = "cli to work with the `todo` microservice"
app.Version = "0.0.1"
app.Flags = []cli.Flag{
cli.StringFlag{"host", "http://localhost:8080", "Todo service host", "APP_HOST", nil},
}
app.Commands = []cli.Command{
{
Name: "add",
Usage: "(title description) create a todo",
Action: func(c *cli.Context) {
title := c.Args().Get(0)
desc := c.Args().Get(1)
host := c.GlobalString("host")
client := client.TodoClient{Host: host}
todo, err := client.CreateTodo(title, desc)
if err != nil {
log.Fatal(err)
return
}
fmt.Printf("%+v\n", todo)
},
},
{
Name: "ls",
Usage: "list all todos",
Action: func(c *cli.Context) {
host := c.GlobalString("host")
client := client.TodoClient{Host: host}
todos, err := client.GetAllTodos()
if err != nil {
log.Fatal(err)
return
}
for _, todo := range todos {
fmt.Printf("%+v\n", todo)
}
},
},
{
Name: "doing",
Usage: "(id) update a todo status to 'doing'",
Action: func(c *cli.Context) {
idStr := c.Args().Get(0)
id, err := strconv.Atoi(idStr)
if err != nil {
log.Print(err)
return
}
host := c.GlobalString("host")
client := client.TodoClient{Host: host}
todo, err := client.UpdateTodoStatus(int32(id), "doing")
if err != nil {
log.Fatal(err)
return
}
fmt.Printf("%+v\n", todo)
},
},
{
Name: "done",
Usage: "(id) update a todo status to 'done'",
Action: func(c *cli.Context) {
idStr := c.Args().Get(0)
id, err := strconv.Atoi(idStr)
if err != nil {
log.Print(err)
return
}
host := c.GlobalString("host")
client := client.TodoClient{Host: host}
todo, err := client.UpdateTodoStatus(int32(id), "done")
if err != nil {
log.Fatal(err)
return
}
fmt.Printf("%+v\n", todo)
},
},
{
Name: "save",
Usage: "(id title description) update a todo title and description",
Action: func(c *cli.Context) {
//.........这里部分代码省略.........