-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
feat: add download count field and unit testing for attachment. #1512
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Copyright 2017 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package models | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestIncreaseDownloadCount(t *testing.T) { | ||
assert.NoError(t, PrepareTestDatabase()) | ||
|
||
attachment, err := GetAttachmentByUUID("1234567890") | ||
assert.NoError(t, err) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bkcsoft Done! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See 8278ac9 |
||
assert.Equal(t, int64(0), attachment.DownloadCount) | ||
|
||
// increase download count | ||
err = attachment.IncreaseDownloadCount() | ||
assert.NoError(t, err) | ||
|
||
attachment, err = GetAttachmentByUUID("1234567890") | ||
assert.NoError(t, err) | ||
assert.Equal(t, int64(1), attachment.DownloadCount) | ||
} | ||
|
||
func TestGetByCommentOrIssueID(t *testing.T) { | ||
assert.NoError(t, PrepareTestDatabase()) | ||
|
||
// count of attachments from issue ID | ||
attachments, err := GetAttachmentsByIssueID(1) | ||
assert.NoError(t, err) | ||
assert.Equal(t, 2, len(attachments)) | ||
|
||
attachments, err = GetAttachmentsByCommentID(1) | ||
assert.NoError(t, err) | ||
assert.Equal(t, 2, len(attachments)) | ||
} | ||
|
||
func TestDeleteAttachments(t *testing.T) { | ||
assert.NoError(t, PrepareTestDatabase()) | ||
|
||
count, err := DeleteAttachmentsByIssue(4, false) | ||
assert.NoError(t, err) | ||
assert.Equal(t, 1, count) | ||
|
||
count, err = DeleteAttachmentsByComment(2, false) | ||
assert.NoError(t, err) | ||
assert.Equal(t, 2, count) | ||
|
||
err = DeleteAttachment(&Attachment{ID: 8}, false) | ||
assert.NoError(t, err) | ||
|
||
attachment, err := GetAttachmentByUUID("test-12345") | ||
assert.Error(t, err) | ||
assert.True(t, IsErrAttachmentNotExist(err)) | ||
assert.Nil(t, attachment) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
- | ||
id: 1 | ||
uuid: 1234567890 | ||
issue_id: 1 | ||
comment_id: 0 | ||
name: attach1 | ||
download_count: 0 | ||
created_unix: 946684800 | ||
|
||
- | ||
id: 2 | ||
uuid: 1122334455 | ||
issue_id: 1 | ||
comment_id: 0 | ||
name: attach2 | ||
download_count: 1 | ||
created_unix: 946684800 | ||
|
||
- | ||
id: 3 | ||
uuid: comment-id-1 | ||
issue_id: 2 | ||
comment_id: 1 | ||
name: attach1 | ||
download_count: 0 | ||
created_unix: 946684800 | ||
|
||
- | ||
id: 4 | ||
uuid: comment-id-2 | ||
issue_id: 3 | ||
comment_id: 1 | ||
name: attach2 | ||
download_count: 1 | ||
created_unix: 946684800 | ||
|
||
- | ||
id: 5 | ||
uuid: comment-id-3 | ||
issue_id: 4 | ||
comment_id: 0 | ||
name: attach1 | ||
download_count: 0 | ||
created_unix: 946684800 | ||
|
||
- | ||
id: 6 | ||
uuid: comment-id-4 | ||
issue_id: 5 | ||
comment_id: 2 | ||
name: attach1 | ||
download_count: 0 | ||
created_unix: 946684800 | ||
|
||
- | ||
id: 7 | ||
uuid: comment-id-5 | ||
issue_id: 5 | ||
comment_id: 2 | ||
name: attach1 | ||
download_count: 0 | ||
created_unix: 946684800 | ||
|
||
- | ||
id: 8 | ||
uuid: test-12345 | ||
issue_id: 6 | ||
comment_id: 0 | ||
name: attach1 | ||
download_count: 0 | ||
created_unix: 946684800 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of migration, do this:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done e35bbb2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I remember @lunny calling for always adding a migration, not sure why
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's better to do that. I think we can begin to ask all schema changes should use https://github.com/go-xorm/xorm/tree/master/migrate