ROOTPLOIT
Server: LiteSpeed
System: Linux in-mum-web1878.main-hosting.eu 5.14.0-570.21.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 11 07:22:35 EDT 2025 x86_64
User: u435929562 (435929562)
PHP: 7.4.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //opt/go/pkg/mod/github.com/go-openapi/[email protected]/internal/antest/helpers_test.go
package antest

import (
	"os"
	"testing"

	"github.com/stretchr/testify/require"
)

func TestLongTestEnabled(t *testing.T) {
	t.Run("should be false by default", func(t *testing.T) {
		require.False(t, LongTestsEnabled())
	})
}

func TestLoadSpecErrorCases(t *testing.T) {
	t.Run("should not load invalid path", func(t *testing.T) {
		_, err := LoadSpec("nowhere.json")
		require.Error(t, err)
	})

	t.Run("should not load invalid YAML", func(t *testing.T) {
		invalidYAMLFile, clean := prepareBadDoc(t, "yaml", true)
		t.Cleanup(clean)

		_, err := LoadSpec(invalidYAMLFile)
		require.Error(t, err)
	})

	t.Run("should not load invalid JSON", func(t *testing.T) {
		invalidJSONFile, clean := prepareBadDoc(t, "json", true)
		t.Cleanup(clean)

		_, err := LoadSpec(invalidJSONFile)
		require.Error(t, err)
	})

	t.Run("should not load invalid spec", func(t *testing.T) {
		invalidJSONFile, clean := prepareBadDoc(t, "json", false)
		t.Cleanup(clean)

		_, err := LoadSpec(invalidJSONFile)
		require.Error(t, err)
	})
}

func prepareBadDoc(t testing.TB, kind string, invalidFormat bool) (string, func()) {
	t.Helper()

	var (
		file string
		data []byte
	)

	switch kind {
	case "yaml", "yml":
		f, err := os.CreateTemp("", "*.yaml")
		require.NoError(t, err)
		file = f.Name()

		if invalidFormat {
			data = []byte(`--
zig:
  zag 3, 4
`)
		} else {
			data = []byte(`--
swagger: 2
info:
  title: true
`)
		}

	case "json":
		f, err := os.CreateTemp("", "*.json")
		require.NoError(t, err)
		file = f.Name()

		if invalidFormat {
			data = []byte(`{
"zig": {
  "zag"
}`)
		} else {
			data = []byte(`{
"swagger": 2
"info": {
  "title": true
}
}`)
		}

	default:
		panic("supports only yaml or json")
	}

	require.NoError(t,
		os.WriteFile(file, data, 0600),
	)

	return file, func() {
		_ = os.RemoveAll(file)
	}
}