Go to file
Gusted 2eb81bef71
[TESTS] add unit test for repository collaboration (#825)
- Add a few extra test cases and test functions for the collaboration
model to get everything covered by tests (except for error handling, as
we cannot suddenly mock errors from the database).

```
-> % go tool cover -func=coverage.out | grep "code.gitea.io/gitea/models/repo/collaboration.go"
```

Before:
```
code.gitea.io/gitea/models/repo/collaboration.go:28:                            init                                            100.0%
code.gitea.io/gitea/models/repo/collaboration.go:39:                            GetCollaborators                                61.5%
code.gitea.io/gitea/models/repo/collaboration.go:65:                            CountCollaborators                              0.0%
code.gitea.io/gitea/models/repo/collaboration.go:70:                            GetCollaboration                                0.0%
code.gitea.io/gitea/models/repo/collaboration.go:83:                            IsCollaborator                                  100.0%
code.gitea.io/gitea/models/repo/collaboration.go:87:                            getCollaborations                               42.9%
code.gitea.io/gitea/models/repo/collaboration.go:102:                           ChangeCollaborationAccessMode                   77.8%
code.gitea.io/gitea/models/repo/collaboration.go:141:                           IsOwnerMemberCollaborator                       0.0%
```

After:
```
code.gitea.io/gitea/models/repo/collaboration.go:28:                            init                                            100.0%
code.gitea.io/gitea/models/repo/collaboration.go:39:                            GetCollaborators                                61.5%
code.gitea.io/gitea/models/repo/collaboration.go:65:                            CountCollaborators                              100.0%
code.gitea.io/gitea/models/repo/collaboration.go:70:                            GetCollaboration                                100.0%
code.gitea.io/gitea/models/repo/collaboration.go:83:                            IsCollaborator                                  100.0%
code.gitea.io/gitea/models/repo/collaboration.go:87:                            getCollaborations                               100.0%
code.gitea.io/gitea/models/repo/collaboration.go:102:                           ChangeCollaborationAccessMode                   83.3%
code.gitea.io/gitea/models/repo/collaboration.go:141:                           IsOwnerMemberCollaborator                       87.5%
```

Co-authored-by: Gusted <postmaster@gusted.xyz>
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/825
(cherry picked from commit 9de2b618a4)
(cherry picked from commit e3a6ca67e4)
(cherry picked from commit 1b17ed668d)
(cherry picked from commit c4e9d1de84)
2023-06-23 15:47:27 +02:00
.forgejo [CI] Forgejo Actions based release process 2023-06-23 13:28:57 +02:00
.gitea [WORKFLOW] issues & pr templates 2023-06-23 15:47:27 +02:00
.github/workflows delete Gitea specific files that need rewriting for Forgejo 2023-06-23 15:47:25 +02:00
assets
build
cmd Refactor path & config system (#25330) (#25416) 2023-06-22 16:27:18 +00:00
contrib Refactor path & config system (#25330) (#25416) 2023-06-22 16:27:18 +00:00
custom/conf [SECURITY] default to pbkdf2 with 320,000 iterations 2023-06-23 15:47:27 +02:00
docker
docs Use the new download domain replace the old (#25405) (#25409) 2023-06-21 03:59:51 +00:00
models [TESTS] add unit test for repository collaboration (#825) 2023-06-23 15:47:27 +02:00
modules [TESTS] testMiddlewareHook, dependency injection in integration tests 2023-06-23 15:47:27 +02:00
options Show outdated comments in files changed tab (#24936) (#25428) 2023-06-22 08:34:42 +00:00
public [API] Forgejo API /api/forgejo/v1 2023-06-23 15:47:27 +02:00
releases [DOCS] RELEASE-NOTES.md 2023-06-23 15:47:27 +02:00
routers [TESTS] testMiddlewareHook, dependency injection in integration tests 2023-06-23 15:47:27 +02:00
services Move some regexp out of functions (#25430) (#25445) 2023-06-22 16:01:54 +00:00
snap
templates [API] Forgejo API /api/forgejo/v1 2023-06-23 15:47:27 +02:00
tests [TESTS] auth LinkAccount test coverage 2023-06-23 15:47:27 +02:00
web_src [API] Forgejo API /api/forgejo/v1 2023-06-23 15:47:27 +02:00
.air.toml
.changelog.yml
.dockerignore
.drone.yml build nightly docker images (#25317) (#25333) 2023-06-18 11:09:30 +00:00
.editorconfig
.eslintrc.yaml Update js dependencies (#25137) (#25151) 2023-06-08 12:05:13 +00:00
.gitattributes Remove more unused Fomantic variants (#25292) (#25323) 2023-06-17 17:14:25 +02:00
.gitignore [CI] Woodpecker based releases process 2023-06-23 13:26:17 +02:00
.gitpod.yml
.golangci.yml
.ignore
.markdownlint.yaml
.npmrc
.spectral.yaml
.stylelintrc.yaml Update JS dependencies, remove space after emoji completion (#25266) (#25352) 2023-06-20 05:38:52 +00:00
BSDmakefile
build.go
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md [DOCS] CONTRIBUTING 2023-06-23 15:47:27 +02:00
DCO
Dockerfile [CI] Forgejo Actions based release process 2023-06-23 13:28:57 +02:00
Dockerfile.rootless [CI] Forgejo Actions based release process 2023-06-23 13:28:57 +02:00
go.mod
go.sum
LICENSE [DOCS] LICENSE: add Forgejo Authors 2023-06-23 15:47:27 +02:00
main.go Refactor path & config system (#25330) (#25416) 2023-06-22 16:27:18 +00:00
MAINTAINERS
Makefile [API] Forgejo API /api/forgejo/v1 2023-06-23 15:47:27 +02:00
package-lock.json Update JS dependencies, remove space after emoji completion (#25266) (#25352) 2023-06-20 05:38:52 +00:00
package.json Update JS dependencies, remove space after emoji completion (#25266) (#25352) 2023-06-20 05:38:52 +00:00
playwright.config.js
README.md [DOCS] README 2023-06-23 15:47:27 +02:00
RELEASE-NOTES.md [DOCS] RELEASE-NOTES.md 2023-06-23 15:47:27 +02:00
vitest.config.js
webpack.config.js [API] Forgejo API /api/forgejo/v1 2023-06-23 15:47:27 +02:00

Welcome to Forgejo

Hi there! Tired of big platforms playing monopoly? Providing Git hosting for your project, friends, company or community? Forgejo (/for'd͡ʒe.jo/ inspired by forĝejo the Esperanto word for forge) has you covered with its intuitive interface, light and easy hosting and a lot of builtin functionality.

Forgejo was created in 2022 because we think that the project should be owned by an independent community. If you second that, then Forgejo is for you! Our promise: Independent Free/Libre Software forever!

What does Forgejo offer?

If you like any of the following, Forgejo is literally meant for you:

  • Lightweight: Forgejo can easily be hosted on nearly every machine. Running on a Raspberry? Small cloud instance? No problem!
  • Project management: Besides Git hosting, Forgejo offers issues, pull requests, wikis, kanban boards and much more to coordinate with your team.
  • Publishing: Have something to share? Use releases to host your software for download, or use the package registry to publish it for docker, npm and many other package managers.
  • Customizable: Want to change your look? Change some settings? There are many config switches to make Forgejo work exactly like you want.
  • Powerful: Organizations & team permissions, CI integration, Code Search, LDAP, OAuth and much more. If you have advanced needs, Forgejo has you covered.
  • Privacy: From update checker to default settings: Forgejo is built to be privacy first for you and your crew.
  • Federation: (WIP) We are actively working to connect software forges with each other through ActivityPub, and create a collaborative network of personal instances.

Learn more

Dive into the documentation, subscribe to releases and blog post on our website, find us on the Fediverse or hop into our Matrix room if you have any questions or want to get involved.

Get involved

If you are interested in making Forgejo better, either by reporting a bug or by changing the governance, please take a look at the contribution guide.