mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2017 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package integration
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"net/http"
 | 
						|
	"os"
 | 
						|
	"os/user"
 | 
						|
	"testing"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/integrations/internal/utils"
 | 
						|
)
 | 
						|
 | 
						|
// The HTTP port listened by the Gitea server.
 | 
						|
const ServerHTTPPort = "3001"
 | 
						|
 | 
						|
const _RetryLimit = 10
 | 
						|
 | 
						|
func makeSimpleSettings(user, port string) map[string][]string {
 | 
						|
	return map[string][]string{
 | 
						|
		"db_type":        {"SQLite3"},
 | 
						|
		"db_host":        {"localhost"},
 | 
						|
		"db_path":        {"data/gitea.db"},
 | 
						|
		"app_name":       {"Gitea: Git with a cup of tea"},
 | 
						|
		"repo_root_path": {"repositories"},
 | 
						|
		"run_user":       {user},
 | 
						|
		"domain":         {"localhost"},
 | 
						|
		"ssh_port":       {"22"},
 | 
						|
		"http_port":      {port},
 | 
						|
		"app_url":        {"http://localhost:" + port},
 | 
						|
		"log_root_path":  {"log"},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func install(t *utils.T) error {
 | 
						|
	var r *http.Response
 | 
						|
	var err error
 | 
						|
 | 
						|
	for i := 1; i <= _RetryLimit; i++ {
 | 
						|
 | 
						|
		r, err = http.Get("http://:" + ServerHTTPPort + "/")
 | 
						|
		if err == nil {
 | 
						|
			fmt.Fprintln(os.Stderr)
 | 
						|
			break
 | 
						|
		}
 | 
						|
 | 
						|
		// Give the server some amount of time to warm up.
 | 
						|
		time.Sleep(100 * time.Millisecond)
 | 
						|
		fmt.Fprint(os.Stderr, ".")
 | 
						|
	}
 | 
						|
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	defer r.Body.Close()
 | 
						|
 | 
						|
	_user, err := user.Current()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	settings := makeSimpleSettings(_user.Username, ServerHTTPPort)
 | 
						|
	r, err = http.PostForm("http://:"+ServerHTTPPort+"/install", settings)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	defer r.Body.Close()
 | 
						|
 | 
						|
	if r.StatusCode != http.StatusOK {
 | 
						|
		return fmt.Errorf("'/install': %s", r.Status)
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func TestInstall(t *testing.T) {
 | 
						|
	conf := utils.Config{
 | 
						|
		Program: "../gitea",
 | 
						|
		WorkDir: "",
 | 
						|
		Args:    []string{"web", "--port", ServerHTTPPort},
 | 
						|
		LogFile: os.Stderr,
 | 
						|
	}
 | 
						|
 | 
						|
	if err := utils.New(t, &conf).RunTest(install); err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
}
 |