Restore twitter tests
This commit is contained in:
parent
f00b84c75a
commit
5c19be147c
2 changed files with 25 additions and 25 deletions
|
@ -1,25 +0,0 @@
|
|||
(ns mastodon-bot.core-test
|
||||
(:require
|
||||
[cljs.test :refer-macros [deftest is testing run-tests]]
|
||||
[cljs.reader :as edn]
|
||||
["fs" :as fs]
|
||||
[mastodon-bot.core :as core]
|
||||
))
|
||||
|
||||
;; (deftest test-read-config
|
||||
;; (is (= 300 core/max-post-length)))
|
||||
|
||||
;; (defn readfile [filename]
|
||||
;; (-> filename (fs/readFileSync #js {:encoding "UTF-8"}) edn/read-string))
|
||||
|
||||
;; (deftest test-remove-link-to-image
|
||||
;; (is (=
|
||||
;; "Mensen vragen om meer foto's in SPAMSPAMSPAM, dus bij deze achteraf de nieuwe kasten voor de projectenkast en de bookcrossingzone. Te vinden direct bij binnenkomst op de eerste en tweede verdieping."
|
||||
;; (:text (core/parse-tweet (readfile "testdata/twitter/tweet-with-link-to-image.edn")))
|
||||
;; )))
|
||||
|
||||
;; (deftest test-parse-normal-tweet-text
|
||||
;; (is (=
|
||||
;; "Daar is 'ie dan! SPAMSPAMSPAM editie 2! Met een samenvatting van wat er in deze eerste twee maanden van 2020 gebeurd en gedaan is binnen @hack42. Lees het via: \nhttps://t.co/O1YzlWTFU3 #hackerspace #nieuws #arnhem #nuarnhem"
|
||||
;; (:text (core/parse-tweet (readfile "testdata/twitter/normal-tweet.edn")))
|
||||
;; )))
|
25
src/test/mastodon_bot/twitter_api_test.cljs
Normal file
25
src/test/mastodon_bot/twitter_api_test.cljs
Normal file
|
@ -0,0 +1,25 @@
|
|||
(ns mastodon-bot.twitter-api-test
|
||||
(:require
|
||||
[cljs.test :refer-macros [deftest is testing run-tests]]
|
||||
[clojure.spec.alpha :as s]
|
||||
[cljs.reader :as edn]
|
||||
["fs" :as fs]
|
||||
[mastodon-bot.twitter-api :as sut]
|
||||
))
|
||||
|
||||
(defn readfile [filename]
|
||||
(-> filename (fs/readFileSync #js {:encoding "UTF-8"}) edn/read-string))
|
||||
|
||||
(def testconfig (readfile "test.edn"))
|
||||
|
||||
(deftest test-parse-normal-tweet-text
|
||||
(is (=
|
||||
"Daar is 'ie dan! SPAMSPAMSPAM editie 2! Met een samenvatting van wat er in deze eerste twee maanden van 2020 gebeurd en gedaan is binnen @hack42. Lees het via: \nhttps://t.co/O1YzlWTFU3 #hackerspace #nieuws #arnhem #nuarnhem"
|
||||
(:text (sut/parse-tweet (readfile "testdata/twitter/normal-tweet.edn")))
|
||||
)))
|
||||
|
||||
(deftest test-remove-link-to-image
|
||||
(is (=
|
||||
"Mensen vragen om meer foto's in SPAMSPAMSPAM, dus bij deze achteraf de nieuwe kasten voor de projectenkast en de bookcrossingzone. Te vinden direct bij binnenkomst op de eerste en tweede verdieping."
|
||||
(:text (sut/parse-tweet (readfile "testdata/twitter/tweet-with-link-to-image.edn")))
|
||||
)))
|
Reference in a new issue