mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-01 00:20:19 +01:00
cb6e5cb0c7
* use dep for vendoring * lets encrypt * moved web to transfer.sh-web repo * single command install * added first tests
40 lines
1.5 KiB
Go
40 lines
1.5 KiB
Go
// Copyright 2013 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 or at
|
|
// https://developers.google.com/open-source/licenses/bsd.
|
|
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var isBrowseURLTests = []struct {
|
|
s string
|
|
importPath string
|
|
ok bool
|
|
}{
|
|
{"https://github.com/garyburd/gddo/blob/master/doc/code.go", "github.com/garyburd/gddo/doc", true},
|
|
{"https://github.com/garyburd/go-oauth/blob/master/.gitignore", "github.com/garyburd/go-oauth", true},
|
|
{"https://github.com/garyburd/gddo/issues/154", "github.com/garyburd/gddo", true},
|
|
{"https://bitbucket.org/user/repo/src/bd0b661a263e/p1/p2?at=default", "bitbucket.org/user/repo/p1/p2", true},
|
|
{"https://bitbucket.org/user/repo/src", "bitbucket.org/user/repo", true},
|
|
{"https://bitbucket.org/user/repo", "bitbucket.org/user/repo", true},
|
|
{"https://github.com/user/repo", "github.com/user/repo", true},
|
|
{"https://github.com/user/repo/tree/master/p1", "github.com/user/repo/p1", true},
|
|
{"http://code.google.com/p/project", "code.google.com/p/project", true},
|
|
}
|
|
|
|
func TestIsBrowseURL(t *testing.T) {
|
|
for _, tt := range isBrowseURLTests {
|
|
importPath, ok := isBrowseURL(tt.s)
|
|
if tt.ok {
|
|
if importPath != tt.importPath || ok != true {
|
|
t.Errorf("IsBrowseURL(%q) = %q, %v; want %q %v", tt.s, importPath, ok, tt.importPath, true)
|
|
}
|
|
} else if ok {
|
|
t.Errorf("IsBrowseURL(%q) = %q, %v; want _, false", tt.s, importPath, ok)
|
|
}
|
|
}
|
|
}
|