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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
|
# encoding: utf-8
require File.dirname(__FILE__) + '/spec_helper'
class TestExtractor
include Twitter::Extractor
end
describe Twitter::Extractor do
before do
@extractor = TestExtractor.new
end
describe "mentions" do
context "single screen name alone " do
it "should be linked" do
@extractor.extract_mentioned_screen_names("@alice").should == ["alice"]
end
it "should be linked with _" do
@extractor.extract_mentioned_screen_names("@alice_adams").should == ["alice_adams"]
end
it "should be linked if numeric" do
@extractor.extract_mentioned_screen_names("@1234").should == ["1234"]
end
end
context "multiple screen names" do
it "should both be linked" do
@extractor.extract_mentioned_screen_names("@alice @bob").should == ["alice", "bob"]
end
end
context "screen names embedded in text" do
it "should be linked in Latin text" do
@extractor.extract_mentioned_screen_names("waiting for @alice to arrive").should == ["alice"]
end
it "should be linked in Japanese text" do
@extractor.extract_mentioned_screen_names("の@aliceに到着を待っている").should == ["alice"]
end
it "should ignore mentions preceded by !, @, #, $, %, & or *" do
invalid_chars = ['!', '@', '#', '$', '%', '&', '*']
invalid_chars.each do |c|
@extractor.extract_mentioned_screen_names("f#{c}@kn").should == []
end
end
end
it "should accept a block arugment and call it in order" do
needed = ["alice", "bob"]
@extractor.extract_mentioned_screen_names("@alice @bob") do |sn|
sn.should == needed.shift
end
needed.should == []
end
end
describe "mentions with indices" do
context "single screen name alone " do
it "should be linked and the correct indices" do
@extractor.extract_mentioned_screen_names_with_indices("@alice").should == [{:screen_name => "alice", :indices => [0, 6]}]
end
it "should be linked with _ and the correct indices" do
@extractor.extract_mentioned_screen_names_with_indices("@alice_adams").should == [{:screen_name => "alice_adams", :indices => [0, 12]}]
end
it "should be linked if numeric and the correct indices" do
@extractor.extract_mentioned_screen_names_with_indices("@1234").should == [{:screen_name => "1234", :indices => [0, 5]}]
end
end
context "multiple screen names" do
it "should both be linked with the correct indices" do
@extractor.extract_mentioned_screen_names_with_indices("@alice @bob").should ==
[{:screen_name => "alice", :indices => [0, 6]},
{:screen_name => "bob", :indices => [7, 11]}]
end
it "should be linked with the correct indices even when repeated" do
@extractor.extract_mentioned_screen_names_with_indices("@alice @alice @bob").should ==
[{:screen_name => "alice", :indices => [0, 6]},
{:screen_name => "alice", :indices => [7, 13]},
{:screen_name => "bob", :indices => [14, 18]}]
end
end
context "screen names embedded in text" do
it "should be linked in Latin text with the correct indices" do
@extractor.extract_mentioned_screen_names_with_indices("waiting for @alice to arrive").should == [{:screen_name => "alice", :indices => [12, 18]}]
end
it "should be linked in Japanese text with the correct indices" do
@extractor.extract_mentioned_screen_names_with_indices("の@aliceに到着を待っている").should == [{:screen_name => "alice", :indices => [1, 7]}]
end
end
it "should accept a block arugment and call it in order" do
needed = [{:screen_name => "alice", :indices => [0, 6]}, {:screen_name => "bob", :indices => [7, 11]}]
@extractor.extract_mentioned_screen_names_with_indices("@alice @bob") do |sn, start_index, end_index|
data = needed.shift
sn.should == data[:screen_name]
start_index.should == data[:indices].first
end_index.should == data[:indices].last
end
needed.should == []
end
it "should extract screen name in text with supplementary character" do
@extractor.extract_mentioned_screen_names_with_indices("#{[0x10400].pack('U')} @alice").should == [{:screen_name => "alice", :indices => [2, 8]}]
end
end
describe "replies" do
context "should be extracted from" do
it "should extract from lone name" do
@extractor.extract_reply_screen_name("@alice").should == "alice"
end
it "should extract from the start" do
@extractor.extract_reply_screen_name("@alice reply text").should == "alice"
end
it "should extract preceded by a space" do
@extractor.extract_reply_screen_name(" @alice reply text").should == "alice"
end
it "should extract preceded by a full-width space" do
@extractor.extract_reply_screen_name("#{[0x3000].pack('U')}@alice reply text").should == "alice"
end
end
context "should not be extracted from" do
it "should not be extracted when preceded by text" do
@extractor.extract_reply_screen_name("reply @alice text").should == nil
end
it "should not be extracted when preceded by puctuation" do
%w(. / _ - + # ! @).each do |punct|
@extractor.extract_reply_screen_name("#{punct}@alice text").should == nil
end
end
end
context "should accept a block arugment" do
it "should call the block on match" do
@extractor.extract_reply_screen_name("@alice") do |sn|
sn.should == "alice"
end
end
it "should not call the block on no match" do
calls = 0
@extractor.extract_reply_screen_name("not a reply") do |sn|
calls += 1
end
calls.should == 0
end
end
end
describe "urls" do
describe "matching URLS" do
TestUrls::VALID.each do |url|
it "should extract the URL #{url} and prefix it with a protocol if missing" do
@extractor.extract_urls(url).first.should include(url)
end
it "should match the URL #{url} when it's embedded in other text" do
text = "Sweet url: #{url} I found. #awesome"
@extractor.extract_urls(text).first.should include(url)
end
end
end
describe "invalid URLS" do
it "does not link urls with invalid domains" do
@extractor.extract_urls("http://tld-too-short.x").should == []
end
end
describe "t.co URLS" do
TestUrls::TCO.each do |url|
it "should only extract the t.co URL from the URL #{url}" do
extracted_urls = @extractor.extract_urls(url)
extracted_urls.size.should == 1
extracted_url = extracted_urls.first
extracted_url.should_not == url
extracted_url.should == url[0...20]
end
it "should match the t.co URL from the URL #{url} when it's embedded in other text" do
text = "Sweet url: #{url} I found. #awesome"
extracted_urls = @extractor.extract_urls(text)
extracted_urls.size.should == 1
extracted_url = extracted_urls.first
extracted_url.should_not == url
extracted_url.should == url[0...20]
end
end
end
end
describe "urls with indices" do
describe "matching URLS" do
TestUrls::VALID.each do |url|
it "should extract the URL #{url} and prefix it with a protocol if missing" do
extracted_urls = @extractor.extract_urls_with_indices(url)
extracted_urls.size.should == 1
extracted_url = extracted_urls.first
extracted_url[:url].should include(url)
extracted_url[:indices].first.should == 0
extracted_url[:indices].last.should == url.chars.to_a.size
end
it "should match the URL #{url} when it's embedded in other text" do
text = "Sweet url: #{url} I found. #awesome"
extracted_urls = @extractor.extract_urls_with_indices(text)
extracted_urls.size.should == 1
extracted_url = extracted_urls.first
extracted_url[:url].should include(url)
extracted_url[:indices].first.should == 11
extracted_url[:indices].last.should == 11 + url.chars.to_a.size
end
end
it "should extract URL in text with supplementary character" do
@extractor.extract_urls_with_indices("#{[0x10400].pack('U')} http://twitter.com").should == [{:url => "http://twitter.com", :indices => [2, 20]}]
end
end
describe "invalid URLS" do
it "does not link urls with invalid domains" do
@extractor.extract_urls_with_indices("http://tld-too-short.x").should == []
end
end
describe "t.co URLS" do
TestUrls::TCO.each do |url|
it "should only extract the t.co URL from the URL #{url} and adjust indices correctly" do
extracted_urls = @extractor.extract_urls_with_indices(url)
extracted_urls.size.should == 1
extracted_url = extracted_urls.first
extracted_url[:url].should_not include(url)
extracted_url[:url].should include(url[0...20])
extracted_url[:indices].first.should == 0
extracted_url[:indices].last.should == 20
end
it "should match the t.co URL from the URL #{url} when it's embedded in other text" do
text = "Sweet url: #{url} I found. #awesome"
extracted_urls = @extractor.extract_urls_with_indices(text)
extracted_urls.size.should == 1
extracted_url = extracted_urls.first
extracted_url[:url].should_not include(url)
extracted_url[:url].should include(url[0...20])
extracted_url[:indices].first.should == 11
extracted_url[:indices].last.should == 31
end
end
end
end
describe "hashtags" do
context "extracts latin/numeric hashtags" do
%w(text text123 123text).each do |hashtag|
it "should extract ##{hashtag}" do
@extractor.extract_hashtags("##{hashtag}").should == [hashtag]
end
it "should extract ##{hashtag} within text" do
@extractor.extract_hashtags("pre-text ##{hashtag} post-text").should == [hashtag]
end
end
end
context "international hashtags" do
context "should allow accents" do
%w(mañana café münchen).each do |hashtag|
it "should extract ##{hashtag}" do
@extractor.extract_hashtags("##{hashtag}").should == [hashtag]
end
it "should extract ##{hashtag} within text" do
@extractor.extract_hashtags("pre-text ##{hashtag} post-text").should == [hashtag]
end
end
it "should not allow the multiplication character" do
@extractor.extract_hashtags("#pre#{Twitter::Unicode::U00D7}post").should == ["pre"]
end
it "should not allow the division character" do
@extractor.extract_hashtags("#pre#{Twitter::Unicode::U00F7}post").should == ["pre"]
end
end
end
it "should not extract numeric hashtags" do
@extractor.extract_hashtags("#1234").should == []
end
it "should extract hashtag followed by punctuations" do
@extractor.extract_hashtags("#test1: #test2; #test3\"").should == ["test1", "test2" ,"test3"]
end
end
describe "hashtags with indices" do
def match_hashtag_in_text(hashtag, text, offset = 0)
extracted_hashtags = @extractor.extract_hashtags_with_indices(text)
extracted_hashtags.size.should == 1
extracted_hashtag = extracted_hashtags.first
extracted_hashtag[:hashtag].should == hashtag
extracted_hashtag[:indices].first.should == offset
extracted_hashtag[:indices].last.should == offset + hashtag.chars.to_a.size + 1
end
def not_match_hashtag_in_text(text)
extracted_hashtags = @extractor.extract_hashtags_with_indices(text)
extracted_hashtags.size.should == 0
end
context "extracts latin/numeric hashtags" do
%w(text text123 123text).each do |hashtag|
it "should extract ##{hashtag}" do
match_hashtag_in_text(hashtag, "##{hashtag}")
end
it "should extract ##{hashtag} within text" do
match_hashtag_in_text(hashtag, "pre-text ##{hashtag} post-text", 9)
end
end
end
context "international hashtags" do
context "should allow accents" do
%w(mañana café münchen).each do |hashtag|
it "should extract ##{hashtag}" do
match_hashtag_in_text(hashtag, "##{hashtag}")
end
it "should extract ##{hashtag} within text" do
match_hashtag_in_text(hashtag, "pre-text ##{hashtag} post-text", 9)
end
end
it "should not allow the multiplication character" do
match_hashtag_in_text("pre", "#pre#{[0xd7].pack('U')}post", 0)
end
it "should not allow the division character" do
match_hashtag_in_text("pre", "#pre#{[0xf7].pack('U')}post", 0)
end
end
end
it "should not extract numeric hashtags" do
not_match_hashtag_in_text("#1234")
end
it "should extract hashtag in text with supplementary character" do
match_hashtag_in_text("hashtag", "#{[0x10400].pack('U')} #hashtag", 2)
end
end
end
|