Format code

Signed-off-by: Steven Kriegler <61625851+justusbunsi@users.noreply.github.com>
This commit is contained in:
justusbunsi 2021-10-03 17:57:22 +02:00
parent 16f545f179
commit a1990a60f4
No known key found for this signature in database
GPG key ID: 990B348ECAC9C7DB
12 changed files with 61 additions and 60 deletions

View file

@ -3,6 +3,7 @@ package gitea_sdk
import (
"fmt"
"gitea-sonarqube-pr-bot/internal/settings"
"code.gitea.io/sdk/gitea"
)

View file

@ -1,11 +1,11 @@
package sonarqube_sdk
import (
"net/http"
"fmt"
"log"
"encoding/base64"
"fmt"
"io"
"log"
"net/http"
"gitea-sonarqube-pr-bot/internal/settings"
)

View file

@ -83,7 +83,7 @@ func Load(configPath string) {
Projects = projects
errCallback := func(msg string) {panic(msg)}
errCallback := func(msg string) { panic(msg) }
Gitea = giteaConfig{
Url: r.GetString("gitea.url"),

View file

@ -10,7 +10,7 @@ import (
)
var defaultConfig []byte = []byte(
`gitea:
`gitea:
url: https://example.com/gitea
token:
value: d0fcdeb5eaa99c506831f9eb4e63fc7cc484a565
@ -38,7 +38,7 @@ func WriteConfigFile(t *testing.T, content []byte) {
os.Remove(config)
})
_ = ioutil.WriteFile(config, content,0444)
_ = ioutil.WriteFile(config, content, 0444)
}
func TestLoadWithMissingFile(t *testing.T) {
@ -135,19 +135,19 @@ func TestLoadSonarQubeStructureInjectedEnvs(t *testing.T) {
func TestLoadStructureWithFileReferenceResolving(t *testing.T) {
giteaWebhookSecretFile := path.Join(os.TempDir(), "webhook-secret-gitea")
_ = ioutil.WriteFile(giteaWebhookSecretFile, []byte(`gitea-totally-secret`),0444)
_ = ioutil.WriteFile(giteaWebhookSecretFile, []byte(`gitea-totally-secret`), 0444)
giteaTokenFile := path.Join(os.TempDir(), "token-secret-gitea")
_ = ioutil.WriteFile(giteaTokenFile, []byte(`d0fcdeb5eaa99c506831f9eb4e63fc7cc484a565`),0444)
_ = ioutil.WriteFile(giteaTokenFile, []byte(`d0fcdeb5eaa99c506831f9eb4e63fc7cc484a565`), 0444)
sonarqubeWebhookSecretFile := path.Join(os.TempDir(), "webhook-secret-sonarqube")
_ = ioutil.WriteFile(sonarqubeWebhookSecretFile, []byte(`sonarqube-totally-secret`),0444)
_ = ioutil.WriteFile(sonarqubeWebhookSecretFile, []byte(`sonarqube-totally-secret`), 0444)
sonarqubeTokenFile := path.Join(os.TempDir(), "token-secret-sonarqube")
_ = ioutil.WriteFile(sonarqubeTokenFile, []byte(`a09eb5785b25bb2cbacf48808a677a0709f02d8e`),0444)
_ = ioutil.WriteFile(sonarqubeTokenFile, []byte(`a09eb5785b25bb2cbacf48808a677a0709f02d8e`), 0444)
WriteConfigFile(t, []byte(
`gitea:
`gitea:
url: https://example.com/gitea
token:
value: fake-gitea-token
@ -213,7 +213,7 @@ func TestLoadProjectsStructure(t *testing.T) {
expectedProjects := []Project{
Project{
SonarQube: struct {Key string}{
SonarQube: struct{ Key string }{
Key: "gitea-sonarqube-pr-bot",
},
Gitea: GiteaRepository{
@ -228,7 +228,7 @@ func TestLoadProjectsStructure(t *testing.T) {
func TestLoadProjectsStructureWithNoMapping(t *testing.T) {
invalidConfig := []byte(
`gitea:
`gitea:
url: https://example.com/gitea
token:
value: d0fcdeb5eaa99c506831f9eb4e63fc7cc484a565

View file

@ -20,7 +20,7 @@ func Serve(c *cli.Context) error {
fmt.Println("Hi! I'm the Gitea-SonarQube-PR bot. At your service.")
var wait time.Duration
flag.DurationVar(&wait, "graceful-timeout", time.Second * 15, "the duration for which the server gracefully wait for existing connections to finish")
flag.DurationVar(&wait, "graceful-timeout", time.Second*15, "the duration for which the server gracefully wait for existing connections to finish")
flag.Parse()
r := mux.NewRouter()

View file

@ -1,8 +1,8 @@
package webhook_handler
import (
"log"
"io/ioutil"
"log"
"os"
"testing"
)

View file

@ -2,15 +2,15 @@ package webhook_handler
import (
"fmt"
"log"
"io"
"io/ioutil"
"log"
"net/http"
"strings"
"gitea-sonarqube-pr-bot/internal/settings"
giteaSdk "gitea-sonarqube-pr-bot/internal/clients/gitea_sdk"
sqSdk "gitea-sonarqube-pr-bot/internal/clients/sonarqube_sdk"
"gitea-sonarqube-pr-bot/internal/settings"
webhook "gitea-sonarqube-pr-bot/internal/webhooks/sonarqube"
)

View file

@ -1,8 +1,8 @@
package sonarqube
import (
"log"
"io/ioutil"
"log"
"os"
"testing"
)