about summary refs log tree commit diff
path: root/tools/govanity/e2e_test.go
blob: 4ec299a890098716b19eecb5f1fd80cef7073afc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package main

import (
	"io/ioutil"
	"net"
	"net/http"
	"testing"

	"gopkg.in/yaml.v3"
)

func TestConfigurationURL(t *testing.T) {
	// we try a DNS resolution first. If it fails, it means we're
	// likely in the sandbox, and we need to skip this test.
	_, err := net.LookupHost("fcuny.net")
	if err != nil {
		t.Skipf("no network connectivity: %v", err)
	}

	buf, err := ioutil.ReadFile("vanity.yaml")
	if err != nil {
		t.Fatalf("failed to read the configuration file: %v", err)
	}

	cfg := &config{}
	err = yaml.Unmarshal(buf, cfg)
	if err != nil {
		t.Fatalf("failed to parse the YAML configuration: %v", err)
	}

	for _, r := range cfg.Repositories {
		res, err := http.Get(r.Repo)
		if err != nil {
			t.Errorf("failed to request %s: %v", r.Repo, err)
		}
		if res.StatusCode != http.StatusOK {
			t.Errorf("HTTP status for %s is: %d - %s", r.Repo, res.StatusCode, res.Status)
		}
	}
}