2019-08-12 22:29:48 +00:00
from base import BaseTestCase , Card , Conversation
from parameterized import parameterized
card = [
[ ' Thom_Wolf/status/1122466524860702729 ' ,
2022-06-03 22:52:28 +00:00
' facebookresearch/fairseq ' ,
' Facebook AI Research Sequence-to-Sequence Toolkit written in Python. - GitHub - facebookresearch/fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python. ' ,
2021-07-18 01:56:51 +00:00
' github.com ' , True ] ,
2019-08-12 22:29:48 +00:00
[ ' nim_lang/status/1136652293510717440 ' ,
' Version 0.20.0 released ' ,
' We are very proud to announce Nim version 0.20. This is a massive release, both literally and figuratively. It contains more than 1,000 commits and it marks our release candidate for version 1.0! ' ,
2022-05-13 17:20:34 +00:00
' nim-lang.org ' , True ] ,
2019-08-12 22:29:48 +00:00
[ ' voidtarget/status/1094632512926605312 ' ,
' Basic OBS Studio plugin, written in nim, supporting C++ (C fine too) ' ,
' Basic OBS Studio plugin, written in nim, supporting C++ (C fine too) - obsplugin.nim ' ,
2019-08-15 21:17:13 +00:00
' gist.github.com ' , True ] ,
2019-08-12 22:29:48 +00:00
[ ' FluentAI/status/1116417904831029248 ' ,
' Amazon’ s Alexa isn’ t just AI — thousands of humans are listening ' ,
' One of the only ways to improve Alexa is to have human beings check it for errors ' ,
2019-08-15 21:17:13 +00:00
' theverge.com ' , True ]
2019-08-12 22:29:48 +00:00
]
no_thumb = [
[ ' brent_p/status/1088857328680488961 ' ,
' Hts Nim Sugar ' ,
' hts-nim is a library that allows one to use htslib via the nim programming language. Nim is a garbage-collected language that compiles to C and often has similar performance. I have become very... ' ,
2019-10-17 22:10:40 +00:00
' brentp.github.io ' ] ,
2019-12-06 12:01:05 +00:00
[ ' voidtarget/status/1133028231672582145 ' ,
' sinkingsugar/nimqt-example ' ,
' A sample of a Qt app written using mostly nim. Contribute to sinkingsugar/nimqt-example development by creating an account on GitHub. ' ,
' github.com ' ] ,
2019-10-17 22:10:40 +00:00
[ ' mobile_test/status/490378953744318464 ' ,
' Nantasket Beach ' ,
2020-10-01 20:43:11 +00:00
' Explore this photo titled Nantasket Beach by Ben Sandofsky (@sandofsky) on 500px ' ,
2020-01-01 16:24:11 +00:00
' 500px.com ' ] ,
[ ' nim_lang/status/1082989146040340480 ' ,
' Nim in 2018: A short recap ' ,
' Posted in r/programming by u/miran1 ' ,
2021-12-26 01:23:05 +00:00
' reddit.com ' ]
2019-08-12 22:29:48 +00:00
]
playable = [
[ ' nim_lang/status/1118234460904919042 ' ,
' Nim development blog 2019-03 ' ,
2021-07-18 01:56:51 +00:00
' Arne (aka Krux02)* debugging: * improved nim-gdb, $ works, framefilter * alias for --debugger:native: -g* bugs: * forwarding of .pure. * sizeof union* fe... ' ,
2019-08-15 21:17:13 +00:00
' youtube.com ' ] ,
2019-08-12 22:29:48 +00:00
[ ' nim_lang/status/1121090879823986688 ' ,
' Nim - First natively compiled language w/ hot code-reloading at... ' ,
2021-07-18 01:56:51 +00:00
' #nim #c++ #ACCUConfNim is a statically typed systems and applications programming language which offers perhaps some of the most powerful metaprogramming cap... ' ,
2019-10-02 08:13:17 +00:00
' youtube.com ' ]
2019-08-12 22:29:48 +00:00
]
2020-11-08 03:27:34 +00:00
# promo = [
# ['BangOlufsen/status/1145698701517754368',
# 'Upgrade your journey', '',
# 'www.bang-olufsen.com'],
2019-08-12 22:29:48 +00:00
2020-11-08 03:27:34 +00:00
# ['BangOlufsen/status/1154934429900406784',
# 'Learn more about Beosound Shape', '',
# 'www.bang-olufsen.com']
# ]
2019-08-12 22:29:48 +00:00
class CardTest ( BaseTestCase ) :
@parameterized.expand ( card )
2019-08-15 21:17:13 +00:00
def test_card ( self , tweet , title , description , destination , large ) :
2019-08-12 22:29:48 +00:00
self . open_nitter ( tweet )
2020-11-08 03:27:34 +00:00
c = Card ( Conversation . main + " " )
self . assert_text ( title , c . title )
self . assert_text ( destination , c . destination )
self . assertIn ( ' _img ' , self . get_image_url ( c . image + ' img ' ) )
2019-08-12 22:29:48 +00:00
if len ( description ) > 0 :
2020-11-08 03:27:34 +00:00
self . assert_text ( description , c . description )
2019-08-12 22:29:48 +00:00
if large :
self . assert_element_visible ( ' .card.large ' )
else :
self . assert_element_not_visible ( ' .card.large ' )
@parameterized.expand ( no_thumb )
def test_card_no_thumb ( self , tweet , title , description , destination ) :
self . open_nitter ( tweet )
2020-11-08 03:27:34 +00:00
c = Card ( Conversation . main + " " )
self . assert_text ( title , c . title )
self . assert_text ( destination , c . destination )
2019-08-12 22:29:48 +00:00
if len ( description ) > 0 :
2020-11-08 03:27:34 +00:00
self . assert_text ( description , c . description )
2019-08-12 22:29:48 +00:00
@parameterized.expand ( playable )
2019-08-15 21:17:13 +00:00
def test_card_playable ( self , tweet , title , description , destination ) :
2019-08-12 22:29:48 +00:00
self . open_nitter ( tweet )
2020-11-08 03:27:34 +00:00
c = Card ( Conversation . main + " " )
self . assert_text ( title , c . title )
self . assert_text ( destination , c . destination )
self . assertIn ( ' _img ' , self . get_image_url ( c . image + ' img ' ) )
2019-08-12 22:29:48 +00:00
self . assert_element_visible ( ' .card-overlay ' )
if len ( description ) > 0 :
2020-11-08 03:27:34 +00:00
self . assert_text ( description , c . description )
# @parameterized.expand(promo)
# def test_card_promo(self, tweet, title, description, destination):
# self.open_nitter(tweet)
# c = Card(Conversation.main + " ")
# self.assert_text(title, c.title)
# self.assert_text(destination, c.destination)
# self.assert_element_visible('.video-overlay')
# if len(description) > 0:
# self.assert_text(description, c.description)