-
-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a311b74
commit 4d93796
Showing
38 changed files
with
3,218 additions
and
297 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
// GoToSocial | ||
// Copyright (C) GoToSocial Authors [email protected] | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU Affero General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Affero General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package ap_test | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"io" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/suite" | ||
"github.com/superseriousbusiness/gotosocial/internal/ap" | ||
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | ||
) | ||
|
||
type ExtractPolicyTestSuite struct { | ||
APTestSuite | ||
} | ||
|
||
func (suite *ExtractPolicyTestSuite) TestExtractPolicy() { | ||
rawNote := `{ | ||
"@context": [ | ||
"https://gotosocial.org/ns", | ||
"https://www.w3.org/ns/activitystreams" | ||
], | ||
"content": "hey @f0x and @dumpsterqueer", | ||
"contentMap": { | ||
"en": "hey @f0x and @dumpsterqueer", | ||
"fr": "bonjour @f0x et @dumpsterqueer" | ||
}, | ||
"interactionPolicy": { | ||
"canLike": { | ||
"always": [ | ||
"https://www.w3.org/ns/activitystreams#Public" | ||
], | ||
"approvalRequired": [] | ||
}, | ||
"canReply": { | ||
"always": [ | ||
"http://localhost:8080/users/the_mighty_zork", | ||
"http://localhost:8080/users/the_mighty_zork/followers", | ||
"https://gts.superseriousbusiness.org/users/dumpsterqueer", | ||
"https://gts.superseriousbusiness.org/users/f0x" | ||
], | ||
"approvalRequired": [ | ||
"https://www.w3.org/ns/activitystreams#Public" | ||
] | ||
}, | ||
"canAnnounce": { | ||
"always": [ | ||
"http://localhost:8080/users/the_mighty_zork" | ||
], | ||
"approvalRequired": [ | ||
"https://www.w3.org/ns/activitystreams#Public" | ||
] | ||
} | ||
}, | ||
"tag": [ | ||
{ | ||
"href": "https://gts.superseriousbusiness.org/users/dumpsterqueer", | ||
"name": "@[email protected]", | ||
"type": "Mention" | ||
}, | ||
{ | ||
"href": "https://gts.superseriousbusiness.org/users/f0x", | ||
"name": "@[email protected]", | ||
"type": "Mention" | ||
} | ||
], | ||
"type": "Note" | ||
}` | ||
|
||
statusable, err := ap.ResolveStatusable( | ||
context.Background(), | ||
io.NopCloser( | ||
bytes.NewBufferString(rawNote), | ||
), | ||
) | ||
if err != nil { | ||
suite.FailNow(err.Error()) | ||
} | ||
|
||
policy := ap.ExtractInteractionPolicy( | ||
statusable, | ||
// Zork didn't actually create | ||
// this status but nevermind. | ||
suite.testAccounts["local_account_1"], | ||
) | ||
|
||
expectedPolicy := >smodel.InteractionPolicy{ | ||
CanLike: gtsmodel.PolicyRules{ | ||
Always: gtsmodel.PolicyValues{ | ||
gtsmodel.PolicyValuePublic, | ||
}, | ||
WithApproval: gtsmodel.PolicyValues{}, | ||
}, | ||
CanReply: gtsmodel.PolicyRules{ | ||
Always: gtsmodel.PolicyValues{ | ||
gtsmodel.PolicyValueAuthor, | ||
gtsmodel.PolicyValueFollowers, | ||
"https://gts.superseriousbusiness.org/users/dumpsterqueer", | ||
"https://gts.superseriousbusiness.org/users/f0x", | ||
}, | ||
WithApproval: gtsmodel.PolicyValues{ | ||
gtsmodel.PolicyValuePublic, | ||
}, | ||
}, | ||
CanAnnounce: gtsmodel.PolicyRules{ | ||
Always: gtsmodel.PolicyValues{ | ||
gtsmodel.PolicyValueAuthor, | ||
}, | ||
WithApproval: gtsmodel.PolicyValues{ | ||
gtsmodel.PolicyValuePublic, | ||
}, | ||
}, | ||
} | ||
suite.EqualValues(expectedPolicy, policy) | ||
} | ||
|
||
func TestExtractPolicyTestSuite(t *testing.T) { | ||
suite.Run(t, &ExtractPolicyTestSuite{}) | ||
} |
Oops, something went wrong.