mirror of
https://codeberg.org/forgejo/forgejo
synced 2025-10-19 02:30:52 +02:00
Rel: https://codeberg.org/forgejo/forgejo/pulls/9628. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/9640 Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
24 lines
750 B
Go
24 lines
750 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package integration
|
|
|
|
import (
|
|
"net/url"
|
|
"testing"
|
|
|
|
repo_model "forgejo.org/models/repo"
|
|
"forgejo.org/models/unittest"
|
|
"forgejo.org/modules/setting"
|
|
)
|
|
|
|
func TestRepoWatch(t *testing.T) {
|
|
onApplicationRun(t, func(t *testing.T, giteaURL *url.URL) {
|
|
// Test round-trip auto-watch
|
|
setting.Service.AutoWatchOnChanges = true
|
|
session := loginUser(t, "user2")
|
|
unittest.AssertNotExistsBean(t, &repo_model.Watch{UserID: 2, RepoID: 3})
|
|
testEditFile(t, session, "org3", "repo3", "master", "README.md", "Hello, World (Edited for watch)\n")
|
|
unittest.AssertExistsAndLoadBean(t, &repo_model.Watch{UserID: 2, RepoID: 3, Mode: repo_model.WatchModeAuto})
|
|
})
|
|
}
|