forked from Mirrors/oauth2
internal: move ParseINI into google
This was the only usage of the function. Change-Id: I081e20789ea9e37fe96f764641078472153bf577 Reviewed-on: https://go-review.googlesource.com/85197 Reviewed-by: Andrew Bonventre <andybons@golang.org>
This commit is contained in:
parent
40a09c6c04
commit
174986b227
|
@ -5,9 +5,11 @@
|
||||||
package google
|
package google
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bufio"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"os/user"
|
"os/user"
|
||||||
|
@ -18,7 +20,6 @@ import (
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
"golang.org/x/net/context"
|
||||||
"golang.org/x/oauth2"
|
"golang.org/x/oauth2"
|
||||||
"golang.org/x/oauth2/internal"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type sdkCredentials struct {
|
type sdkCredentials struct {
|
||||||
|
@ -76,7 +77,7 @@ func NewSDKConfig(account string) (*SDKConfig, error) {
|
||||||
return nil, fmt.Errorf("oauth2/google: failed to load SDK properties: %v", err)
|
return nil, fmt.Errorf("oauth2/google: failed to load SDK properties: %v", err)
|
||||||
}
|
}
|
||||||
defer f.Close()
|
defer f.Close()
|
||||||
ini, err := internal.ParseINI(f)
|
ini, err := parseINI(f)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("oauth2/google: failed to parse SDK properties %q: %v", propertiesPath, err)
|
return nil, fmt.Errorf("oauth2/google: failed to parse SDK properties %q: %v", propertiesPath, err)
|
||||||
}
|
}
|
||||||
|
@ -146,6 +147,34 @@ func (c *SDKConfig) Scopes() []string {
|
||||||
return c.conf.Scopes
|
return c.conf.Scopes
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func parseINI(ini io.Reader) (map[string]map[string]string, error) {
|
||||||
|
result := map[string]map[string]string{
|
||||||
|
"": {}, // root section
|
||||||
|
}
|
||||||
|
scanner := bufio.NewScanner(ini)
|
||||||
|
currentSection := ""
|
||||||
|
for scanner.Scan() {
|
||||||
|
line := strings.TrimSpace(scanner.Text())
|
||||||
|
if strings.HasPrefix(line, ";") {
|
||||||
|
// comment.
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(line, "[") && strings.HasSuffix(line, "]") {
|
||||||
|
currentSection = strings.TrimSpace(line[1 : len(line)-1])
|
||||||
|
result[currentSection] = map[string]string{}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
parts := strings.SplitN(line, "=", 2)
|
||||||
|
if len(parts) == 2 && parts[0] != "" {
|
||||||
|
result[currentSection][strings.TrimSpace(parts[0])] = strings.TrimSpace(parts[1])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if err := scanner.Err(); err != nil {
|
||||||
|
return nil, fmt.Errorf("error scanning ini: %v", err)
|
||||||
|
}
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
// sdkConfigPath tries to guess where the gcloud config is located.
|
// sdkConfigPath tries to guess where the gcloud config is located.
|
||||||
// It can be overridden during tests.
|
// It can be overridden during tests.
|
||||||
var sdkConfigPath = func() (string, error) {
|
var sdkConfigPath = func() (string, error) {
|
||||||
|
|
|
@ -4,7 +4,11 @@
|
||||||
|
|
||||||
package google
|
package google
|
||||||
|
|
||||||
import "testing"
|
import (
|
||||||
|
"reflect"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
func TestSDKConfig(t *testing.T) {
|
func TestSDKConfig(t *testing.T) {
|
||||||
sdkConfigPath = func() (string, error) {
|
sdkConfigPath = func() (string, error) {
|
||||||
|
@ -44,3 +48,60 @@ func TestSDKConfig(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestParseINI(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
ini string
|
||||||
|
want map[string]map[string]string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
`root = toor
|
||||||
|
[foo]
|
||||||
|
bar = hop
|
||||||
|
ini = nin
|
||||||
|
`,
|
||||||
|
map[string]map[string]string{
|
||||||
|
"": {"root": "toor"},
|
||||||
|
"foo": {"bar": "hop", "ini": "nin"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"\t extra \t = whitespace \t\r\n \t [everywhere] \t \r\n here \t = \t there \t \r\n",
|
||||||
|
map[string]map[string]string{
|
||||||
|
"": {"extra": "whitespace"},
|
||||||
|
"everywhere": {"here": "there"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`[empty]
|
||||||
|
[section]
|
||||||
|
empty=
|
||||||
|
`,
|
||||||
|
map[string]map[string]string{
|
||||||
|
"": {},
|
||||||
|
"empty": {},
|
||||||
|
"section": {"empty": ""},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`ignore
|
||||||
|
[invalid
|
||||||
|
=stuff
|
||||||
|
;comment=true
|
||||||
|
`,
|
||||||
|
map[string]map[string]string{
|
||||||
|
"": {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for _, tt := range tests {
|
||||||
|
result, err := parseINI(strings.NewReader(tt.ini))
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("parseINI(%q) error %v, want: no error", tt.ini, err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if !reflect.DeepEqual(result, tt.want) {
|
||||||
|
t.Errorf("parseINI(%q) = %#v, want: %#v", tt.ini, result, tt.want)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -5,14 +5,11 @@
|
||||||
package internal
|
package internal
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
|
||||||
"crypto/rsa"
|
"crypto/rsa"
|
||||||
"crypto/x509"
|
"crypto/x509"
|
||||||
"encoding/pem"
|
"encoding/pem"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
|
||||||
"strings"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// ParseKey converts the binary contents of a private key file
|
// ParseKey converts the binary contents of a private key file
|
||||||
|
@ -39,34 +36,6 @@ func ParseKey(key []byte) (*rsa.PrivateKey, error) {
|
||||||
return parsed, nil
|
return parsed, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func ParseINI(ini io.Reader) (map[string]map[string]string, error) {
|
|
||||||
result := map[string]map[string]string{
|
|
||||||
"": {}, // root section
|
|
||||||
}
|
|
||||||
scanner := bufio.NewScanner(ini)
|
|
||||||
currentSection := ""
|
|
||||||
for scanner.Scan() {
|
|
||||||
line := strings.TrimSpace(scanner.Text())
|
|
||||||
if strings.HasPrefix(line, ";") {
|
|
||||||
// comment.
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(line, "[") && strings.HasSuffix(line, "]") {
|
|
||||||
currentSection = strings.TrimSpace(line[1 : len(line)-1])
|
|
||||||
result[currentSection] = map[string]string{}
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
parts := strings.SplitN(line, "=", 2)
|
|
||||||
if len(parts) == 2 && parts[0] != "" {
|
|
||||||
result[currentSection][strings.TrimSpace(parts[0])] = strings.TrimSpace(parts[1])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if err := scanner.Err(); err != nil {
|
|
||||||
return nil, fmt.Errorf("error scanning ini: %v", err)
|
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func CondVal(v string) []string {
|
func CondVal(v string) []string {
|
||||||
if v == "" {
|
if v == "" {
|
||||||
return nil
|
return nil
|
||||||
|
|
|
@ -1,61 +0,0 @@
|
||||||
// Copyright 2014 The Go Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
package internal
|
|
||||||
|
|
||||||
import (
|
|
||||||
"reflect"
|
|
||||||
"strings"
|
|
||||||
"testing"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestParseINI(t *testing.T) {
|
|
||||||
tests := []struct {
|
|
||||||
ini string
|
|
||||||
want map[string]map[string]string
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
`root = toor
|
|
||||||
[foo]
|
|
||||||
bar = hop
|
|
||||||
ini = nin
|
|
||||||
`,
|
|
||||||
map[string]map[string]string{
|
|
||||||
"": {"root": "toor"},
|
|
||||||
"foo": {"bar": "hop", "ini": "nin"},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
`[empty]
|
|
||||||
[section]
|
|
||||||
empty=
|
|
||||||
`,
|
|
||||||
map[string]map[string]string{
|
|
||||||
"": {},
|
|
||||||
"empty": {},
|
|
||||||
"section": {"empty": ""},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
`ignore
|
|
||||||
[invalid
|
|
||||||
=stuff
|
|
||||||
;comment=true
|
|
||||||
`,
|
|
||||||
map[string]map[string]string{
|
|
||||||
"": {},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
for _, tt := range tests {
|
|
||||||
result, err := ParseINI(strings.NewReader(tt.ini))
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("ParseINI(%q) error %v, want: no error", tt.ini, err)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if !reflect.DeepEqual(result, tt.want) {
|
|
||||||
t.Errorf("ParseINI(%q) = %#v, want: %#v", tt.ini, result, tt.want)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue