本文整理汇总了Golang中go-todo/client.TodoClient.DeleteTodo方法的典型用法代码示例。如果您正苦于以下问题:Golang TodoClient.DeleteTodo方法的具体用法?Golang TodoClient.DeleteTodo怎么用?Golang TodoClient.DeleteTodo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类go-todo/client.TodoClient
的用法示例。
在下文中一共展示了TodoClient.DeleteTodo方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestUpdateTodo
func TestUpdateTodo(t *testing.T) {
// given
client := client.TodoClient{Host: "http://localhost:8080"}
todo, _ := client.CreateTodo("foo", "bar")
// when
todo.Status = "doing"
todo.Title = "baz"
todo.Description = "bing"
_, err := client.UpdateTodo(todo)
// then
if err != nil {
t.Error(err)
}
todoResult, _ := client.GetTodo(todo.Id)
if !reflect.DeepEqual(todo, todoResult) {
t.Error("returned todo not updated")
}
// cleanup
_ = client.DeleteTodo(todo.Id)
}
示例2: 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)
}
示例3: TestDeleteNotFoundTodo
func TestDeleteNotFoundTodo(t *testing.T) {
// given
client := client.TodoClient{Host: "http://localhost:8080"}
id := int32(3)
// when
err := client.DeleteTodo(id)
// then
if err == nil {
t.Error(err)
}
}
示例4: TestUpdateNonExistantTodo
func TestUpdateNonExistantTodo(t *testing.T) {
// given
client := client.TodoClient{Host: "http://localhost:8080"}
todo, _ := client.CreateTodo("foo", "bar")
_ = client.DeleteTodo(todo.Id)
// when
todo.Status = "doing"
todo.Title = "baz"
todo.Description = "bing"
_, err := client.UpdateTodo(todo)
// then
if err == nil {
t.Error(err)
}
}
示例5: TestCreateTodo
func TestCreateTodo(t *testing.T) {
// given
client := client.TodoClient{Host: "http://localhost:8080"}
// when
todo, err := client.CreateTodo("foo", "bar")
//then
if err != nil {
t.Error(err)
}
if todo.Title != "foo" && todo.Description != "bar" {
t.Error("returned todo not right")
}
// cleanup
_ = client.DeleteTodo(todo.Id)
}
示例6: TestDeleteTodo
func TestDeleteTodo(t *testing.T) {
// given
client := client.TodoClient{Host: "http://localhost:8080"}
todo, _ := client.CreateTodo("foo", "bar")
id := todo.Id
// when
err := client.DeleteTodo(id)
// then
if err != nil {
t.Error(err)
}
_, err = client.GetTodo(id)
if err == nil {
t.Error(err)
}
}
示例7: TestUpdateTodosStatus
func TestUpdateTodosStatus(t *testing.T) {
// given
client := client.TodoClient{Host: "http://localhost:8080"}
todo, _ := client.CreateTodo("foo", "bar")
// when
_, err := client.UpdateTodoStatus(todo.Id, api.DoingStatus)
// then
if err != nil {
t.Error(err)
}
todoResult, _ := client.GetTodo(todo.Id)
if todoResult.Status != "doing" {
t.Error("returned todo status not updated")
}
// cleanup
_ = client.DeleteTodo(todo.Id)
}