mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-20 09:15:19 +01:00
038d7dd90c
* Updates for verfied tags deletion. * Remove old UI. * Move i18n folder. * Updates for latest UI codes. * make travis with latest dev code. * update test code * add cat log * cat nginx * cat nginx * fix template error * remove --with-notary * remove controller test * fix controller test bug * modify controller test * debug controller test * update controller test * update index title to harbor, discussed with Kun. * Update package.json * Merge latest UI changes. * remove git
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
package main
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
func main() {
|
|
usrNamePtr := flag.String("name", "anaymous", "user name")
|
|
usrPasswdPtr := flag.String("passwd", "anaymous", "user password")
|
|
flag.Parse()
|
|
|
|
v := url.Values{}
|
|
v.Set("principal", *usrNamePtr)
|
|
v.Set("password", *usrPasswdPtr)
|
|
|
|
body := ioutil.NopCloser(strings.NewReader(v.Encode())) //endode v:[body struce]
|
|
fmt.Println(v)
|
|
|
|
tr := &http.Transport{
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
|
}
|
|
client := &http.Client{Transport: tr}
|
|
|
|
reqest, err := http.NewRequest("POST", "https://localhost/login", body)
|
|
if err != nil {
|
|
fmt.Println("Fatal error ", err.Error())
|
|
}
|
|
|
|
reqest.Header.Set("Content-Type", "application/x-www-form-urlencoded;param=value") //setting post head
|
|
|
|
resp, err := client.Do(reqest)
|
|
defer resp.Body.Close() //close resp.Body
|
|
|
|
fmt.Println("login status: ", resp.StatusCode) //print status code
|
|
|
|
//content_post, err := ioutil.ReadAll(resp.Body)
|
|
//if err != nil {
|
|
// fmt.Println("Fatal error ", err.Error())
|
|
//}
|
|
|
|
//fmt.Println(string(content_post)) //print reply
|
|
|
|
response, err := client.Get("https://localhost/api/logout")
|
|
if err != nil {
|
|
fmt.Println("Fatal error ", err.Error())
|
|
}
|
|
|
|
defer response.Body.Close()
|
|
|
|
fmt.Println("logout status: ", resp.StatusCode) //print status code
|
|
//content_get, err := ioutil.ReadAll(response.Body)
|
|
//fmt.Println(string(content_get))
|
|
|
|
}
|