mirror of https://github.com/perkeep/perkeep.git
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
|
/*
|
||
|
Copyright 2013 Google Inc.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/url"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestRedirect(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
in string
|
||
|
want string
|
||
|
}{
|
||
|
{"/foo", ""},
|
||
|
{"/gw/502aff1fd522c454e39a3723b596aca43d206d4e", "https://camlistore.googlesource.com/camlistore/+/502aff1fd522c454e39a3723b596aca43d206d4e"},
|
||
|
{"/gw/doc", "https://camlistore.googlesource.com/camlistore/+/master/doc"},
|
||
|
{"/code/?p=camlistore.git;a=commit;h=b0d2a8f0e5f27bbfc025a96ec3c7896b42d198ed", "https://camlistore.googlesource.com/camlistore/+/b0d2a8f0e5f27bbfc025a96ec3c7896b42d198ed"},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
u, err := url.ParseRequestURI(tt.in)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
got := redirectPath(u)
|
||
|
if got != tt.want {
|
||
|
t.Errorf("redirectPath(%q) = %q; want %q", tt.in, got, tt.want)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|