From dd136858f1ea40ad3c94191d647487fa4f31926c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 18 Oct 2024 20:33:49 +0200 Subject: Adding upstream version 9.0.0. Signed-off-by: Daniel Baumann --- tests/integration/repo_settings_hook_test.go | 63 ++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 tests/integration/repo_settings_hook_test.go (limited to 'tests/integration/repo_settings_hook_test.go') diff --git a/tests/integration/repo_settings_hook_test.go b/tests/integration/repo_settings_hook_test.go new file mode 100644 index 0000000..0a3dd57 --- /dev/null +++ b/tests/integration/repo_settings_hook_test.go @@ -0,0 +1,63 @@ +// Copyright 2022 The Forgejo Authors c/o Codeberg e.V.. All rights reserved. +// SPDX-License-Identifier: MIT + +package integration + +import ( + "net/http" + "strings" + "testing" + + "code.gitea.io/gitea/tests" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestRepoSettingsHookHistory(t *testing.T) { + defer tests.PrepareTestEnv(t)() + + session := loginUser(t, "user2") + + // Request repository hook page with history + req := NewRequest(t, "GET", "/user2/repo1/settings/hooks/1") + resp := session.MakeRequest(t, req, http.StatusOK) + + doc := NewHTMLParser(t, resp.Body) + + t.Run("1/delivered", func(t *testing.T) { + html, err := doc.doc.Find(".webhook div[data-tab='request-1']").Html() + require.NoError(t, err) + assert.Contains(t, html, "Request URL: /matrix-delivered\n") + assert.Contains(t, html, "Request method: PUT") + assert.Contains(t, html, "X-Head: 42") + assert.Contains(t, html, `{}`) + + val, ok := doc.doc.Find(".webhook div.item:has(div#info-1) svg").Attr("class") + assert.True(t, ok) + assert.Equal(t, "svg octicon-alert", val) + }) + + t.Run("2/undelivered", func(t *testing.T) { + html, err := doc.doc.Find(".webhook div[data-tab='request-2']").Html() + require.NoError(t, err) + assert.Equal(t, "-", strings.TrimSpace(html)) + + val, ok := doc.doc.Find(".webhook div.item:has(div#info-2) svg").Attr("class") + assert.True(t, ok) + assert.Equal(t, "svg octicon-stopwatch", val) + }) + + t.Run("3/success", func(t *testing.T) { + html, err := doc.doc.Find(".webhook div[data-tab='request-3']").Html() + require.NoError(t, err) + assert.Contains(t, html, "Request URL: /matrix-success\n") + assert.Contains(t, html, "Request method: PUT") + assert.Contains(t, html, "X-Head: 42") + assert.Contains(t, html, `{"key":"value"}`) + + val, ok := doc.doc.Find(".webhook div.item:has(div#info-3) svg").Attr("class") + assert.True(t, ok) + assert.Equal(t, "svg octicon-check", val) + }) +} -- cgit v1.2.3