-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_banno.py
62 lines (57 loc) · 1.54 KB
/
test_banno.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#test_banno.py
import pytest, banno, json, re
tweet = '''
{
"data": {
"id": "1220025596324892672",
"created_at": "2020-01-22T16:49:03.000Z",
"text": "Tak menyesal aku tido lambat sebab tengok vid ni 😂😂 https://t.co/QNgkvTw7Ae",
"author_id": "904377000474820608",
"referenced_tweets": [{
"type": "quoted",
"id": "1219633686460686336"
}],
"entities": {
"urls": [{
"start": 52,
"end": 75,
"url": "https://t.co/QNgkvTw7Ae",
"expanded_url": "https://google.com/image.png",
"display_url": "twitter.com/Payishahyin/st…"
}]
},
"format": "default"
}
}
'''
tweet2 = '''
{
"data": {
"id": "1220027100821905409",
"created_at": "2020-01-22T16:55:02.000Z",
"text": "RT @AbAmri: بمناسبة انعقاد #منتدى_الرياض_الاقتصادي\nلا بد أن نذكّر ونذكّر حضوره من رجال وسيدات الأعمال بمسؤوليتهم الوطنية تجاه شبابنا وبناتن…",
"author_id": "2493022118",
"referenced_tweets": [{
"type": "retweeted",
"id": "1219722096844181506"
}],
"entities": {
"hashtags": [{
"start": 27,
"end": 50,
"tag": "منتدى_الرياض_الاقتصادي"
}],
"mentions": [{
"start": 3,
"end": 10,
"username": "AbAmri"
}]
},
"format": "default"
}
}
'''
def test_has_emoji_true():
assert banno.has_emoji(tweet) > 0
def test_has_emoji_false():
assert banno.has_emoji(tweet2) == 0