Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
goatherd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
arw
goatherd
Commits
019fe686
Commit
019fe686
authored
8 years ago
by
Lukas Braun
Browse files
Options
Downloads
Patches
Plain Diff
test reading username and secret from stdin
parent
6c451e74
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
goatherd.go
+5
-3
5 additions, 3 deletions
goatherd.go
goatherd_test.go
+42
-23
42 additions, 23 deletions
goatherd_test.go
with
47 additions
and
26 deletions
goatherd.go
+
5
−
3
View file @
019fe686
...
...
@@ -104,19 +104,20 @@ func create_table(db *sql.DB) {
err_fatalf
(
"Failed to create table: %v
\n
"
,
err
)
}
// global var for testing, not modified during normal execution
var
stdin_reader
=
bufio
.
NewReader
(
os
.
Stdin
)
func
create_user
(
db
*
sql
.
DB
,
name
string
,
secret_b64
string
)
{
debug
(
"Creating user"
)
var
err
error
reader
:=
bufio
.
NewReader
(
os
.
Stdin
)
if
name
==
"-"
{
fmt
.
Printf
(
"Enter username: "
)
name
,
err
=
get_line
(
reader
)
name
,
err
=
get_line
(
stdin_
reader
)
err_fatalf
(
"Can't read username: %v
\n
"
,
err
)
}
if
secret_b64
==
"-"
{
fmt
.
Printf
(
"Enter secret: "
)
secret_b64
,
err
=
get_line
(
reader
)
secret_b64
,
err
=
get_line
(
stdin_
reader
)
err_fatalf
(
"Can't read secret: %v
\n
"
,
err
)
}
...
...
@@ -218,6 +219,7 @@ commit:
return
ok
,
nil
retry
:
debugf
(
"[%v] retry"
,
remote
)
ok
=
false
err
=
nil
tx
.
Rollback
()
...
...
This diff is collapsed.
Click to expand it.
goatherd_test.go
+
42
−
23
View file @
019fe686
...
...
@@ -5,6 +5,7 @@ import (
"bytes"
"database/sql"
"encoding/base64"
"fmt"
"io"
"sync"
"testing"
...
...
@@ -13,6 +14,8 @@ import (
)
var
db
*
sql
.
DB
var
stdin_writer
*
bufio
.
Writer
var
(
username
=
"foobar"
...
...
@@ -26,33 +29,47 @@ func t_err_fatal(t *testing.T, err error) {
}
}
func
create_user_t
(
t
*
testing
.
T
)
{
create_user
(
db
,
username
,
secret_b64
)
// always uses global username and secret for comparison, so we can test "-"
func
create_and_check
(
user
string
,
sec
string
)
func
(
*
testing
.
T
)
{
return
func
(
t
*
testing
.
T
)
{
create_user
(
db
,
user
,
sec
)
var
result
struct
{
secret
[]
byte
count
uint64
}
var
result
struct
{
secret
[]
byte
count
uint64
}
t
.
Run
(
"exists"
,
func
(
t
*
testing
.
T
)
{
tx
,
err
:=
db
.
Begin
()
t_err_fatal
(
t
,
err
)
result
.
secret
,
result
.
count
,
err
=
get_user
(
tx
,
username
)
t_err_fatal
(
t
,
err
)
tx
.
Commit
()
})
t
.
Run
(
"exists"
,
func
(
t
*
testing
.
T
)
{
tx
,
err
:=
db
.
Begin
()
t_err_fatal
(
t
,
err
)
result
.
secret
,
result
.
count
,
err
=
get_user
(
tx
,
username
)
t_err_fatal
(
t
,
err
)
tx
.
Commit
()
})
t
.
Run
(
"correct_secret"
,
func
(
t
*
testing
.
T
)
{
if
bytes
.
Compare
(
secret
,
result
.
secret
)
!=
0
{
t
.
Errorf
(
"secret: %v; result: %v"
,
secret
,
result
.
secret
)
}
})
t
.
Run
(
"correct_secret"
,
func
(
t
*
testing
.
T
)
{
if
bytes
.
Compare
(
secret
,
result
.
secret
)
!=
0
{
t
.
Errorf
(
"secret: %v; result: %v"
,
string
(
secret
)
,
string
(
result
.
secret
)
)
}
})
t
.
Run
(
"correct_count"
,
func
(
t
*
testing
.
T
)
{
if
result
.
count
!=
1
{
t
.
Errorf
(
"initial count: %v"
,
result
.
count
)
}
})
t
.
Run
(
"correct_count"
,
func
(
t
*
testing
.
T
)
{
if
result
.
count
!=
1
{
t
.
Errorf
(
"initial count: %v"
,
result
.
count
)
}
})
}
}
func
create_user_t
(
t
*
testing
.
T
)
{
t
.
Run
(
"args"
,
create_and_check
(
username
,
secret_b64
))
go
func
()
{
fmt
.
Fprintln
(
stdin_writer
,
username
)
fmt
.
Fprintln
(
stdin_writer
,
secret_b64
)
stdin_writer
.
Flush
()
}()
t
.
Run
(
"stdin"
,
create_and_check
(
"-"
,
"-"
))
}
// runs two updating transactions concurrently, fails if none of them aborts
...
...
@@ -286,6 +303,8 @@ func TestMain(t *testing.T) {
cfg
.
Lookahead
=
3
cfg
.
Debug
=
false
faildelay
.
userlocks
=
make
(
map
[
string
]
*
sync
.
Mutex
)
stdin_r
,
stdin_w
:=
io
.
Pipe
()
stdin_reader
,
stdin_writer
=
bufio
.
NewReader
(
stdin_r
),
bufio
.
NewWriter
(
stdin_w
)
var
err
error
db
,
err
=
sql
.
Open
(
"sqlite3"
,
cfg
.
Db_url
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment