Skip to content

Commit

Permalink
extract whole buildURI logic and write a test
Browse files Browse the repository at this point in the history
  • Loading branch information
naughtyGitCat committed Sep 1, 2023
1 parent b793c84 commit 1cdf1a6
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 12 deletions.
29 changes: 17 additions & 12 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,22 @@ func main() {
e.Run()
}

func buildURI(uri string, user string, password string) string {
// IF user@pass not contained in uri AND custom user and pass supplied in arguments
// DO concat a new uri with user and pass arguments value
if !strings.Contains(uri, "@") && user != "" && password != "" {
// trim mongodb:// prefix to handle user and pass logic
uri = strings.TrimPrefix(uri, "mongodb://")

// log.Debugf("add user and pass to the uri")
uri = fmt.Sprintf("%s:%s@%s", user, password, uri)

// add back mongodb://
uri = "mongodb://" + uri
}
return uri
}

func buildExporter(opts GlobalFlags) *exporter.Exporter {
log := logrus.New()

Expand All @@ -105,18 +121,7 @@ func buildExporter(opts GlobalFlags) *exporter.Exporter {

log.Debugf("Compatible mode: %v", opts.CompatibleMode)

// IF user@pass not contained in uri AND custom user and pass supplied in arguments
// DO concat a new uri with user and pass arguments value
if !strings.Contains(opts.URI, "@") && opts.User != "" && opts.Password != "" {
// trim mongodb:// prefix to handle user and pass logic
opts.URI = strings.TrimPrefix(opts.URI, "mongodb://")

log.Debugf("add user and pass to the uri")
opts.URI = fmt.Sprintf("%s:%s@%s", opts.User, opts.Password, opts.URI)

// add back mongodb://
opts.URI = "mongodb://" + opts.URI
}
opts.URI = buildURI(opts.URI, opts.User, opts.Password)

log.Debugf("Connection URI: %s", opts.URI)

Expand Down
95 changes: 95 additions & 0 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,98 @@ func TestBuildExporter(t *testing.T) {

buildExporter(opts)
}

func TestBuildURI(t *testing.T) {

This comment has been minimized.

Copy link
@BupycHuk

BupycHuk Sep 1, 2023

Member

please use this format to not have duplications in the test code

This comment has been minimized.

Copy link
@naughtyGitCat

naughtyGitCat Sep 1, 2023

Author Contributor
const newUser = "xxx"
const newPass = "yyy"

const originalBareURI = "127.0.0.1"
const originalAuthURI = "usr:[email protected]"

const originalPrefixBareURI = "mongodb://127.0.0.1"
const originalPrefixAuthURI = "mongodb://usr:[email protected]"
const changedPrefixAuthURI = "mongodb://xxx:[email protected]"

var newUri string

t.Log("\nuri with prefix and auth, and auth supplied in opt.User/Password")
newUri = buildURI(originalPrefixAuthURI, newUser, newPass)
t.Logf("Origin: %s", originalPrefixAuthURI)
t.Logf("Expect: %s", originalPrefixAuthURI)
t.Logf("Result: %s", newUri)
if newUri != originalPrefixAuthURI {
t.Fail()
}
newUri = ""

t.Log("\nuri with prefix and auth, no auth supplied in opt.User/Password")
newUri = buildURI(originalPrefixAuthURI, "", "")
t.Logf("Origin: %s", originalPrefixAuthURI)
t.Logf("Expect: %s", originalPrefixAuthURI)
t.Logf("Result: %s", newUri)
if newUri != originalPrefixAuthURI {
t.Fail()
}
newUri = ""

t.Log("\nuri with no prefix and auth, and auth supplied in opt.User/Password")
newUri = buildURI(originalAuthURI, newUser, newPass)
t.Logf("Origin: %s", originalAuthURI)
t.Logf("Expect: %s", originalAuthURI)
t.Logf("Result: %s", newUri)
if newUri != originalAuthURI {
t.Fail()
}
newUri = ""

t.Log("\nuri with no prefix and auth, no auth supplied in opt.User/Password")
newUri = buildURI(originalAuthURI, "", "")
t.Logf("Origin: %s", originalAuthURI)
t.Logf("Expect: %s", originalAuthURI)
t.Logf("Result: %s", newUri)
if newUri != originalAuthURI {
t.Fail()
}
newUri = ""

t.Log("\nuri with prefix and no auth, and auth supplied in opt.User/Password")
newUri = buildURI(originalPrefixBareURI, newUser, newPass)
t.Logf("Origin: %s", originalPrefixBareURI)
t.Logf("Expect: %s", changedPrefixAuthURI)
t.Logf("Result: %s", newUri)
if newUri != changedPrefixAuthURI {
t.Fail()
}
newUri = ""

t.Log("\nuri with prefix and no auth, no auth supplied in opt.User/Password")
newUri = buildURI(originalPrefixBareURI, "", "")
t.Logf("Origin: %s", originalPrefixBareURI)
t.Logf("Expect: %s", originalPrefixBareURI)
t.Logf("Result: %s", newUri)
if newUri != originalPrefixBareURI {
t.Fail()
}
newUri = ""

t.Log("\nuri with no prefix and no auth, and auth supplied in opt.User/Password")
newUri = buildURI(originalBareURI, newUser, newPass)
t.Logf("Origin: %s", originalBareURI)
t.Logf("Expect: %s", changedPrefixAuthURI)
t.Logf("Result: %s", newUri)
if newUri != changedPrefixAuthURI {
t.Fail()
}
newUri = ""

t.Log("\nuri with no prefix and no auth, no auth supplied in opt.User/Password")
newUri = buildURI(originalBareURI, "", "")
t.Logf("Origin: %s", originalBareURI)
t.Logf("Expect: %s", originalBareURI)
t.Logf("Result: %s", newUri)
if newUri != originalBareURI {
t.Fail()
}
newUri = ""

}

0 comments on commit 1cdf1a6

Please sign in to comment.