Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
ksonnet
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Ijaz Ahmad
ksonnet
Commits
f093e316
Unverified
Commit
f093e316
authored
7 years ago
by
Alex Clemmer
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #97 from jessicayuen/uri-normalization
Normalize environment server URL
parents
e85c5a06
c188bc9b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
cmd/root.go
+13
-3
13 additions, 3 deletions
cmd/root.go
metadata/environment.go
+6
-0
6 additions, 0 deletions
metadata/environment.go
utils/strings.go
+10
-0
10 additions, 0 deletions
utils/strings.go
utils/strings_test.go
+28
-0
28 additions, 0 deletions
utils/strings_test.go
with
57 additions
and
3 deletions
cmd/root.go
+
13
−
3
View file @
f093e316
...
...
@@ -352,7 +352,12 @@ func overrideCluster(envName string, clientConfig clientcmd.ClientConfig, overri
var
servers
=
make
(
map
[
string
]
string
)
for
name
,
cluster
:=
range
rawConfig
.
Clusters
{
servers
[
cluster
.
Server
]
=
name
server
,
err
:=
utils
.
NormalizeURL
(
cluster
.
Server
)
if
err
!=
nil
{
return
err
}
servers
[
server
]
=
name
}
//
...
...
@@ -366,8 +371,13 @@ func overrideCluster(envName string, clientConfig clientcmd.ClientConfig, overri
return
err
}
if
_
,
ok
:=
servers
[
env
.
Server
];
ok
{
clusterName
:=
servers
[
env
.
Server
]
server
,
err
:=
utils
.
NormalizeURL
(
env
.
Server
)
if
err
!=
nil
{
return
err
}
if
_
,
ok
:=
servers
[
server
];
ok
{
clusterName
:=
servers
[
server
]
log
.
Debugf
(
"Overwriting --cluster flag with '%s'"
,
clusterName
)
overrides
.
Context
.
Cluster
=
clusterName
log
.
Debugf
(
"Overwriting --namespace flag with '%s'"
,
env
.
Namespace
)
...
...
This diff is collapsed.
Click to expand it.
metadata/environment.go
+
6
−
0
View file @
f093e316
...
...
@@ -30,6 +30,7 @@ import (
"github.com/ksonnet/ksonnet-lib/ksonnet-gen/ksonnet"
"github.com/ksonnet/ksonnet-lib/ksonnet-gen/kubespec"
param
"github.com/ksonnet/ksonnet/metadata/params"
"github.com/ksonnet/ksonnet/utils"
)
const
(
...
...
@@ -492,6 +493,11 @@ params + {
}
func
generateSpecData
(
server
,
namespace
string
)
([]
byte
,
error
)
{
server
,
err
:=
utils
.
NormalizeURL
(
server
)
if
err
!=
nil
{
return
nil
,
err
}
// Format the spec json and return; preface keys with 2 space idents.
return
json
.
MarshalIndent
(
EnvironmentSpec
{
Server
:
server
,
Namespace
:
namespace
},
""
,
" "
)
}
...
...
This diff is collapsed.
Click to expand it.
utils/strings.go
+
10
−
0
View file @
f093e316
...
...
@@ -18,6 +18,8 @@ package utils
import
(
"bytes"
"strings"
"github.com/PuerkitoBio/purell"
)
// IsASCIIIdentifier takes a string and returns true if the string does not
...
...
@@ -32,6 +34,14 @@ func IsASCIIIdentifier(s string) bool {
return
true
}
// NormalizeURL uses purell's "usually safe normalization" algorithm to
// normalize URLs. This includes removing dot segments, removing trailing
// slashes, removing unnecessary escapes, removing default ports, and setting
// the URL to lowercase.
func
NormalizeURL
(
s
string
)
(
string
,
error
)
{
return
purell
.
NormalizeURLString
(
s
,
purell
.
FlagsUsuallySafeGreedy
)
}
func
PadRows
(
rows
[][]
string
)
(
string
,
error
)
{
maxRowLen
:=
0
for
_
,
row
:=
range
rows
{
...
...
This diff is collapsed.
Click to expand it.
utils/strings_test.go
+
28
−
0
View file @
f093e316
...
...
@@ -53,6 +53,34 @@ func TestIsASCIIIdentifier(t *testing.T) {
}
}
func
TestNormalizeURL
(
t
*
testing
.
T
)
{
tests
:=
[]
struct
{
input
string
expected
string
}{
{
input
:
"host/path/./a/b/../c"
,
expected
:
"host/path/a/c"
,
},
{
input
:
"HTTP://host"
,
expected
:
"http://host"
,
},
{
input
:
"http://host:80"
,
expected
:
"http://host"
,
},
}
for
_
,
test
:=
range
tests
{
normalized
,
err
:=
NormalizeURL
(
test
.
input
)
if
err
!=
nil
{
t
.
Error
(
err
)
}
require
.
EqualValues
(
t
,
test
.
expected
,
normalized
)
}
}
func
TestPadRows
(
t
*
testing
.
T
)
{
tests
:=
[]
struct
{
input
[][]
string
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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