zcash-grant-system/backend/tests/test_data.py

185 lines
4.8 KiB
Python

import json
import random
from grant.proposal.models import CATEGORIES
message = {
"sig": "0x7b3a85e9f158c2ae2a9ffba986a7dcb9108cf8ea9691080f80eadb506719f14925c89777aade3fabc5f9730ea389abdf7ffb0da16babdf1a1ea710b1e998cb891c",
"data": {
"domain": {
"name": "Grant.io",
"version": 1,
"chainId": 1543277948575
},
"types": {
"authorization": [
{
"name": "Message Proof",
"type": "string"
},
{
"name": "Time",
"type": "string"
}
],
"EIP712Domain": [
{
"name": "name",
"type": "string"
},
{
"name": "version",
"type": "string"
},
{
"name": "chainId",
"type": "uint256"
}
]
},
"message": {
"message": "I am proving the identity of 0x6bEeA1Cef016c23e292381b6FcaeC092960e41aa on Grant.io",
"time": "Tue, 27 Nov 2018 19:02:04 GMT"
},
"primaryType": "authorization"
}
}
test_user = {
"displayName": 'Groot',
"emailAddress": 'iam@groot.com',
"password": "p4ssw0rd",
"title": 'I am Groot!',
"avatar": {
"link": 'https://your-bucket-name.s3.amazonaws.com/avatars/1.b0be8bf740ce419a80ea9e1f55974ce1.png'
},
"socialMedias": [
{
"link": 'https://github.com/groot'
}
],
"signedMessage": message["sig"],
"rawTypedData": json.dumps(message["data"])
}
test_team = [test_user]
test_other_user = {
"displayName": 'Faketoshi',
"emailAddress": 'fake@toshi.com',
"title": 'The Real Fake Satoshi',
"password": 'n4k0m0t0'
}
milestones = [
{
"title": "All the money straightaway",
"content": "cool stuff with it",
"dateEstimated": "Fri, 30 Nov 2018 01:42:23 GMT",
"payoutPercent": "100",
"immediatePayout": False
}
]
test_proposal = {
"team": test_team,
"crowdFundContractAddress": "0x20000",
"content": "## My Proposal",
"title": "Give Me Money",
"brief": "$$$",
"milestones": milestones,
"category": random.choice(CATEGORIES),
"target": "123.456",
"payoutAddress": "123",
"trustees": ["123"],
"deadlineDuration": 100,
"voteDuration": 100
}
test_comment_message = {
"sig": "0x08d5922e48e44229a764d85000558ac9a603ee2ce6a4439a211de4c64a7c3e782efeea90d63760dafb155af53c1dadcec10dac682e1fff8df1b4f40f9fcf08891b",
"data": {
"domain": {
"name": "Grant.io",
"version": 1,
"chainId": 1543277948575
},
"types": {
"comment": [
{
"name": "Comment",
"type": "string"
}
],
"EIP712Domain": [
{
"name": "name",
"type": "string"
},
{
"name": "version",
"type": "string"
},
{
"name": "chainId",
"type": "uint256"
}
]
},
"message": {
"comment": "Test comment"
},
"primaryType": "comment"
}
}
test_comment = {
"signedMessage": test_comment_message["sig"],
"rawTypedData": json.dumps(test_comment_message["data"]),
"comment": test_comment_message["data"]["message"]["comment"]
}
test_reply_message = {
"sig": "0x08d5922e48e44229a764d85000558ac9a603ee2ce6a4439a211de4c64a7c3e782efeea90d63760dafb155af53c1dadcec10dac682e1fff8df1b4f40f9fcf08891b",
"data": {
"domain": {
"name": "Grant.io",
"version": 1,
"chainId": 1543277948575
},
"types": {
"comment": [
{
"name": "Comment",
"type": "string"
}
],
"EIP712Domain": [
{
"name": "name",
"type": "string"
},
{
"name": "version",
"type": "string"
},
{
"name": "chainId",
"type": "uint256"
}
]
},
"message": {
"comment": "Test reply"
},
"primaryType": "comment"
}
}
test_reply = {
"signedMessage": test_reply_message["sig"],
"rawTypedData": json.dumps(test_reply_message["data"]),
"comment": test_reply_message["data"]["message"]["comment"]
# Fill in parentCommentId in test
}