From: Maytham Alsudany <maytha8thedev@gmail.com>
Forwarded: not-needed
Description: skip internet-dependent tests
 The Debian Policy requires that the build doesn't attempt network access, so
 the tests that rely on network access to work have been disabled.
 .
 See section 4.9 of the Debian Policy Manual for more information.

--- a/http_check_test.go
+++ b/http_check_test.go
@@ -9,6 +9,7 @@
 )
 
 func TestCheckHTTP_Status200(t *testing.T) {
+	t.SkipNow()
 	urlToCheck := "http://example.com/"
 
 	verifier := NewVerifier()
@@ -25,6 +26,7 @@
 }
 
 func TestCheckHTTP_Status404(t *testing.T) {
+	t.SkipNow()
 	urlToCheck := "http://example.com/notfound"
 
 	verifier := NewVerifier()
@@ -41,6 +43,7 @@
 }
 
 func TestCheckHTTP_Unreachable(t *testing.T) {
+	t.SkipNow()
 	urlToCheck := "http://example.unreachable"
 
 	verifier := NewVerifier()
--- a/verifier_test.go
+++ b/verifier_test.go
@@ -256,6 +256,7 @@
 }
 
 func TestCheckVerify_HTTPCheckEnabledValid(t *testing.T) {
+	t.SkipNow()
 	urlToCheck := "https://example.com/"
 
 	verifier := NewVerifier()
@@ -280,6 +281,7 @@
 }
 
 func TestCheckVerify_HTTPCheckEnabledInvalid(t *testing.T) {
+	t.SkipNow()
 	urlToCheck := "invalid"
 
 	verifier := NewVerifier()
@@ -301,6 +303,7 @@
 }
 
 func TestCheckVerify_HTTPCheckEnabledValidUnreachable(t *testing.T) {
+	t.SkipNow()
 	urlToCheck := "https://example.unreachable/"
 
 	verifier := NewVerifier()
@@ -322,6 +325,7 @@
 }
 
 func TestCheckVerify_HTTPCheckEnabledValidLocalDisallowedDefault(t *testing.T) {
+	t.SkipNow()
 	urlToCheck := "https://localhost/"
 
 	verifier := NewVerifier()
@@ -344,6 +348,7 @@
 }
 
 func TestCheckVerify_HTTPCheckEnabledValidLocalDisallowedExplicit(t *testing.T) {
+	t.SkipNow()
 	urlToCheck := "https://localhost/"
 
 	verifier := NewVerifier()
@@ -366,6 +371,7 @@
 }
 
 func TestCheckVerify_HTTPCheckEnabledValidLocalAllowed(t *testing.T) {
+	t.SkipNow()
 	// Start a local test server
 	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
 		fmt.Fprintln(w, "Hello, client")
@@ -404,6 +410,7 @@
 }
 
 func TestCheckVerify_HTTPCheckEnabledInvalidScheme(t *testing.T) {
+	t.SkipNow()
 	urlToCheck := "example.com"
 
 	verifier := NewVerifier()
