gitlab-org--gitlab-foss/spec/factories
Douwe Maan 12db4cc0e7 Merge branch 'jej-note-search-uses-finder' into 'security'
Fix missing Note access checks in by moving Note#search to updated NoteFinder

Split from !2024 to partially solve https://gitlab.com/gitlab-org/gitlab-ce/issues/23867

## Which fixes are in this MR?

⚠️ - Potentially untested  
💣 - No test coverage  
🚥 - Test coverage of some sort exists (a test failed when error raised)  
🚦 - Test coverage of return value (a test failed when nil used)  
 - Permissions check tested

### Note lookup without access check

- [x]  app/finders/notes_finder.rb:13 :download_code check
- [x]  app/finders/notes_finder.rb:19 `SnippetsFinder`
- [x]  app/models/note.rb:121 [`Issue#visible_to_user`]
- [x]  lib/gitlab/project_search_results.rb:113
  - This is the only use of `app/models/note.rb:121` above, but importantly has no access checks at all. This means it leaks MR comments and snippets when those features are `team-only` in addition to the issue comments which would be fixed by `app/models/note.rb:121`.
  - It is only called from SearchController where `can?(current_user, :download_code, @project)` is checked, so commit comments are not leaked.

### Previous discussions
- [x] https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2024/diffs#b915c5267a63628b0bafd23d37792ae73ceae272_13_13 `: download_code` check on commit
- [x] https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2024/diffs#b915c5267a63628b0bafd23d37792ae73ceae272_19_19 `SnippetsFinder` should be used
  - `SnippetsFinder` should check if the snippets feature is enabled -> https://gitlab.com/gitlab-org/gitlab-ce/issues/25223

###  Acceptance criteria met?
- [x] Tests added for new code
- [x] TODO comments removed
- [x] Squashed and removed skipped tests
- [x] Changelog entry
- [ ] State Gitlab versions affected and issue severity in description
- [ ] Create technical debt issue for NotesFinder.
  - Either split into `NotesFinder::ForTarget` and `NotesFinder::Search` or consider object per notable type such as `NotesFinder::OnIssue`. For the first option could create `NotesFinder::Base` which is either inherited from or which can be included in the other two.
  - Avoid case statement anti-pattern in this finder with use of `NotesFinder::OnCommit` etc. Consider something on the finder for this? `Model.finder(user, project)`
  - Move `inc_author` to the controller, and implement `related_notes` to replace `non_diff_notes`/`mr_and_commit_notes`

See merge request !2035
2016-12-15 11:40:12 -03:00
..
ci Add tests for build play extended detailed status 2016-12-12 14:53:05 +01:00
abuse_reports.rb
appearances.rb
award_emoji.rb
boards.rb Update Boards::CreateService to handle with the has_many association 2016-10-11 11:39:04 -03:00
broadcast_messages.rb
chat_names.rb Add most of specs for chat names 2016-11-16 14:56:30 +01:00
commit_statuses.rb Add a lot of tests for scopes, feedback: 2016-11-19 01:02:49 +08:00
commits.rb
deploy_keys_projects.rb
deployments.rb Add environment factory review app trait 2016-11-09 09:42:09 +01:00
emails.rb
environments.rb Make it possible to fabricate environment on branch 2016-11-14 14:10:54 +01:00
events.rb
file_uploader.rb
forked_project_links.rb
group_members.rb Refactor group_members_controller_spec 2016-10-19 14:13:44 +03:00
groups.rb Create nested group factory 2016-12-11 10:30:40 +02:00
identities.rb
issues.rb
keys.rb
label_links.rb
label_priorities.rb Add LabelPriority model 2016-10-19 14:58:27 -02:00
labels.rb Fix sorting by label priorities 2016-10-19 14:58:27 -02:00
lfs_objects.rb
lfs_objects_projects.rb
lists.rb
merge_requests.rb Add setting to only allow merge requests to be merged when all discussions are resolved 2016-11-04 14:58:40 +01:00
milestones.rb
namespaces.rb
notes.rb Merge branch 'jej-note-search-uses-finder' into 'security' 2016-12-15 11:40:12 -03:00
notification_settings.rb
oauth_access_tokens.rb
oauth_applications.rb
personal_access_tokens.rb
personal_snippets.rb
project_group_links.rb
project_hooks.rb
project_members.rb Refactor project_members_controller_spec 2016-10-19 15:13:59 +03:00
project_snippets.rb
project_wikis.rb
projects.rb Introduce deployment services, starting with a KubernetesService 2016-12-14 21:06:26 +00:00
protected_branches.rb
releases.rb
sent_notifications.rb
service_hooks.rb
services.rb
snippets.rb
spam_logs.rb
subscriptions.rb Add unique index to subscriptions on subscribable and user and project 2016-11-17 15:10:12 -02:00
system_hooks.rb
todos.rb
u2f_registrations.rb
user_agent_details.rb
users.rb
wiki_pages.rb