48 lines
903 B
Go
48 lines
903 B
Go
// +build examples
|
|
|
|
package authors
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"testing"
|
|
|
|
"github.com/kyleconroy/sqlc/internal/sqltest"
|
|
)
|
|
|
|
func TestAuthors(t *testing.T) {
|
|
sdb, cleanup := sqltest.MySQL(t, []string{"schema.sql"})
|
|
defer cleanup()
|
|
|
|
ctx := context.Background()
|
|
db := New(sdb)
|
|
|
|
// list all authors
|
|
authors, err := db.ListAuthors(ctx)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(authors)
|
|
|
|
// create an author
|
|
result, err := db.CreateAuthor(ctx, CreateAuthorParams{
|
|
Name: "Brian Kernighan",
|
|
Bio: sql.NullString{String: "Co-author of The C Programming Language and The Go Programming Language", Valid: true},
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
authorID, err := result.LastInsertId()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(authorID)
|
|
|
|
// get the author we just inserted
|
|
fetchedAuthor, err := db.GetAuthor(ctx, authorID)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(fetchedAuthor)
|
|
}
|