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 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
|
require 'rubygems/test_case'
require 'rubygems/indexer'
unless defined?(Builder::XChar) then
warn "Gem::Indexer tests are being skipped. Install builder gem." if $VERBOSE
end
class TestGemIndexer < Gem::TestCase
def setup
super
util_clear_gems
util_make_gems
@d2_0 = quick_spec 'd', '2.0' do |s|
s.date = Gem::Specification::TODAY - 86400 * 3
end
util_build_gem @d2_0
@d2_0_a = quick_spec 'd', '2.0.a'
util_build_gem @d2_0_a
@d2_0_b = quick_spec 'd', '2.0.b'
util_build_gem @d2_0_b
@tempdir = File.join(@tempdir, 'indexer')
gems = File.join(@tempdir, 'gems')
FileUtils.mkdir_p gems
FileUtils.mv Dir[File.join(@gemhome, "cache", '*.gem')], gems
@indexer = Gem::Indexer.new(@tempdir,
:rss_title => 'ExampleForge gems',
:rss_host => 'example.com',
:rss_gems_host => 'gems.example.com')
end
def test_initialize
assert_equal @tempdir, @indexer.dest_directory
assert_equal File.join(Dir.tmpdir, "gem_generate_index_#{$$}"),
@indexer.directory
indexer = Gem::Indexer.new @tempdir
assert indexer.build_legacy
assert indexer.build_modern
indexer = Gem::Indexer.new @tempdir, :build_legacy => false,
:build_modern => true
refute indexer.build_legacy
assert indexer.build_modern
indexer = Gem::Indexer.new @tempdir, :build_legacy => true,
:build_modern => false
assert indexer.build_legacy
refute indexer.build_modern
end
def test_build_indicies
@indexer.make_temp_directories
use_ui @ui do
@indexer.build_indicies
end
specs_path = File.join @indexer.directory, "specs.#{@marshal_version}"
specs_dump = Gem.read_binary specs_path
specs = Marshal.load specs_dump
expected = [["a", Gem::Version.new("1"), "ruby"],
["a", Gem::Version.new("2"), "ruby"],
["a_evil", Gem::Version.new("9"), "ruby"],
["b", Gem::Version.new("2"), "ruby"],
["c", Gem::Version.new("1.2"), "ruby"],
["d", Gem::Version.new("2.0"), "ruby"],
["pl", Gem::Version.new("1"), "i386-linux"]]
assert_equal expected, specs
latest_specs_path = File.join(@indexer.directory,
"latest_specs.#{@marshal_version}")
latest_specs_dump = Gem.read_binary latest_specs_path
latest_specs = Marshal.load latest_specs_dump
expected = [["a", Gem::Version.new("2"), "ruby"],
["a_evil", Gem::Version.new("9"), "ruby"],
["b", Gem::Version.new("2"), "ruby"],
["c", Gem::Version.new("1.2"), "ruby"],
["d", Gem::Version.new("2.0"), "ruby"],
["pl", Gem::Version.new("1"), "i386-linux"]]
assert_equal expected, latest_specs, 'latest_specs'
end
def test_generate_index
use_ui @ui do
@indexer.generate_index
end
assert_indexed @tempdir, "Marshal.#{@marshal_version}"
assert_indexed @tempdir, "Marshal.#{@marshal_version}.Z"
quickdir = File.join @tempdir, 'quick'
marshal_quickdir = File.join quickdir, "Marshal.#{@marshal_version}"
assert File.directory?(quickdir)
assert File.directory?(marshal_quickdir)
assert_indexed marshal_quickdir, "#{File.basename(@a1.spec_file)}.rz"
assert_indexed marshal_quickdir, "#{File.basename(@a2.spec_file)}.rz"
refute_indexed marshal_quickdir, File.basename(@c1_2.spec_file)
assert_indexed @tempdir, "specs.#{@marshal_version}"
assert_indexed @tempdir, "specs.#{@marshal_version}.gz"
assert_indexed @tempdir, "latest_specs.#{@marshal_version}"
assert_indexed @tempdir, "latest_specs.#{@marshal_version}.gz"
expected = <<-EOF
<?xml version=\"1.0\"?>
<rss version=\"2.0\">
<channel>
<title>ExampleForge gems</title>
<link>http://example.com</link>
<description>Recently released gems from http://example.com</description>
<generator>RubyGems v#{Gem::VERSION}</generator>
<docs>http://cyber.law.harvard.edu/rss/rss.html</docs>
<item>
<title>a-2</title>
<description>
<pre>This is a test description</pre>
</description>
<author>example@example.com (A User)</author>
<guid>a-2</guid>
<enclosure url=\"http://gems.example.com/gems/a-2.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>#{@a2.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
<title>a-3.a</title>
<description>
<pre>This is a test description</pre>
</description>
<author>example@example.com (A User)</author>
<guid>a-3.a</guid>
<enclosure url=\"http://gems.example.com/gems/a-3.a.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>#{@a3a.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
<title>a_evil-9</title>
<description>
<pre>This is a test description</pre>
</description>
<author>example@example.com (A User)</author>
<guid>a_evil-9</guid>
<enclosure url=\"http://gems.example.com/gems/a_evil-9.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>#{@a_evil9.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
<title>b-2</title>
<description>
<pre>This is a test description</pre>
</description>
<author>example@example.com (A User)</author>
<guid>b-2</guid>
<enclosure url=\"http://gems.example.com/gems/b-2.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>#{@b2.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
<title>c-1.2</title>
<description>
<pre>This is a test description</pre>
</description>
<author>example@example.com (A User)</author>
<guid>c-1.2</guid>
<enclosure url=\"http://gems.example.com/gems/c-1.2.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>#{@c1_2.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
<title>d-2.0.a</title>
<description>
<pre>This is a test description</pre>
</description>
<author>example@example.com (A User)</author>
<guid>d-2.0.a</guid>
<enclosure url=\"http://gems.example.com/gems/d-2.0.a.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>#{@d2_0_a.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
<title>d-2.0.b</title>
<description>
<pre>This is a test description</pre>
</description>
<author>example@example.com (A User)</author>
<guid>d-2.0.b</guid>
<enclosure url=\"http://gems.example.com/gems/d-2.0.b.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>#{@d2_0_b.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
<title>pl-1-x86-linux</title>
<description>
<pre>This is a test description</pre>
</description>
<author>example@example.com (A User)</author>
<guid>pl-1-x86-linux</guid>
<enclosure url=\"http://gems.example.com/gems/pl-1-x86-linux.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>#{@pl1.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
<title>a-1</title>
<description>
<pre>This line is really, really long. So long, in fact, that it is more than
eighty characters long! The purpose of this line is for testing wrapping
behavior because sometimes people don't wrap their text to eighty characters.
Without the wrapping, the text might not look good in the RSS feed.
Also, a list:
* An entry that's actually kind of sort
* an entry that's really long, which will probably get wrapped funny.
That's ok, somebody wasn't thinking straight when they made it more than
eighty characters.</pre>
</description>
<author>example@example.com (Example), example2@example.com (Example2)</author>
<guid>a-1</guid>
<enclosure url=\"http://gems.example.com/gems/a-1.gem\"
length=\"3584\" type=\"application/octet-stream\" />
<pubDate>#{@a1.date.rfc2822}</pubDate>
<link>http://a.example.com</link>
</item>
</channel>
</rss>
EOF
gems_rss = File.read File.join(@tempdir, 'index.rss')
assert_equal expected, gems_rss
end
def test_generate_index_legacy
@indexer.build_modern = false
@indexer.build_legacy = true
use_ui @ui do
@indexer.generate_index
end
assert_indexed @tempdir, "Marshal.#{@marshal_version}"
assert_indexed @tempdir, "Marshal.#{@marshal_version}.Z"
quickdir = File.join @tempdir, 'quick'
marshal_quickdir = File.join quickdir, "Marshal.#{@marshal_version}"
assert File.directory?(quickdir)
assert File.directory?(marshal_quickdir)
assert_indexed marshal_quickdir, "#{File.basename(@a1.spec_file)}.rz"
assert_indexed marshal_quickdir, "#{File.basename(@a2.spec_file)}.rz"
refute_indexed marshal_quickdir, "#{File.basename(@c1_2.spec_file)}"
refute_indexed @tempdir, "specs.#{@marshal_version}"
refute_indexed @tempdir, "specs.#{@marshal_version}.gz"
refute_indexed @tempdir, "latest_specs.#{@marshal_version}"
refute_indexed @tempdir, "latest_specs.#{@marshal_version}.gz"
end
def test_generate_index_legacy_back_to_back
@indexer.build_modern = true
@indexer.build_legacy = true
use_ui @ui do
@indexer.generate_index
end
@indexer = Gem::Indexer.new @tempdir
@indexer.build_modern = false
@indexer.build_legacy = true
use_ui @ui do
@indexer.generate_index
end
assert_indexed @tempdir, "Marshal.#{@marshal_version}"
assert_indexed @tempdir, "Marshal.#{@marshal_version}.Z"
quickdir = File.join @tempdir, 'quick'
marshal_quickdir = File.join quickdir, "Marshal.#{@marshal_version}"
assert File.directory?(marshal_quickdir)
assert_indexed marshal_quickdir, "#{File.basename(@a1.spec_file)}.rz"
assert_indexed marshal_quickdir, "#{File.basename(@a2.spec_file)}.rz"
assert_indexed @tempdir, "specs.#{@marshal_version}"
assert_indexed @tempdir, "specs.#{@marshal_version}.gz"
assert_indexed @tempdir, "latest_specs.#{@marshal_version}"
assert_indexed @tempdir, "latest_specs.#{@marshal_version}.gz"
end
def test_generate_index_modern
@indexer.build_modern = true
@indexer.build_legacy = false
use_ui @ui do
@indexer.generate_index
end
refute_indexed @tempdir, 'yaml'
refute_indexed @tempdir, 'yaml.Z'
refute_indexed @tempdir, "Marshal.#{@marshal_version}"
refute_indexed @tempdir, "Marshal.#{@marshal_version}.Z"
quickdir = File.join @tempdir, 'quick'
marshal_quickdir = File.join quickdir, "Marshal.#{@marshal_version}"
assert File.directory?(quickdir), 'quickdir should be directory'
assert File.directory?(marshal_quickdir)
refute_indexed quickdir, "index"
refute_indexed quickdir, "index.rz"
refute_indexed quickdir, "latest_index"
refute_indexed quickdir, "latest_index.rz"
refute_indexed quickdir, "#{File.basename(@a1.spec_file)}.rz"
refute_indexed quickdir, "#{File.basename(@a2.spec_file)}.rz"
refute_indexed quickdir, "#{File.basename(@b2.spec_file)}.rz"
refute_indexed quickdir, "#{File.basename(@c1_2.spec_file)}.rz"
refute_indexed quickdir, "#{@pl1.original_name}.gemspec.rz"
refute_indexed quickdir, "#{File.basename(@pl1.spec_file)}.rz"
assert_indexed marshal_quickdir, "#{File.basename(@a1.spec_file)}.rz"
assert_indexed marshal_quickdir, "#{File.basename(@a2.spec_file)}.rz"
refute_indexed quickdir, "#{File.basename(@c1_2.spec_file)}"
refute_indexed marshal_quickdir, "#{File.basename(@c1_2.spec_file)}"
assert_indexed @tempdir, "specs.#{@marshal_version}"
assert_indexed @tempdir, "specs.#{@marshal_version}.gz"
assert_indexed @tempdir, "latest_specs.#{@marshal_version}"
assert_indexed @tempdir, "latest_specs.#{@marshal_version}.gz"
end
def test_generate_index_modern_back_to_back
@indexer.build_modern = true
@indexer.build_legacy = true
use_ui @ui do
@indexer.generate_index
end
@indexer = Gem::Indexer.new @tempdir
@indexer.build_modern = true
@indexer.build_legacy = false
use_ui @ui do
@indexer.generate_index
end
assert_indexed @tempdir, "Marshal.#{@marshal_version}"
assert_indexed @tempdir, "Marshal.#{@marshal_version}.Z"
quickdir = File.join @tempdir, 'quick'
marshal_quickdir = File.join quickdir, "Marshal.#{@marshal_version}"
assert File.directory?(quickdir)
assert File.directory?(marshal_quickdir)
assert_indexed marshal_quickdir, "#{File.basename(@a1.spec_file)}.rz"
assert_indexed marshal_quickdir, "#{File.basename(@a2.spec_file)}.rz"
assert_indexed @tempdir, "specs.#{@marshal_version}"
assert_indexed @tempdir, "specs.#{@marshal_version}.gz"
assert_indexed @tempdir, "latest_specs.#{@marshal_version}"
assert_indexed @tempdir, "latest_specs.#{@marshal_version}.gz"
end
def test_generate_index_ui
use_ui @ui do
@indexer.generate_index
end
assert_match %r%^\.\.\.\.\.\.\.\.\.\.$%, @ui.output
assert_match %r%^Generating Marshal quick index gemspecs for 10 gems$%,
@ui.output
assert_match %r%^Complete$%, @ui.output
assert_match %r%^Generating specs index$%, @ui.output
assert_match %r%^Generating latest specs index$%, @ui.output
assert_match %r%^Generating prerelease specs index$%, @ui.output
assert_match %r%^Generating Marshal master index$%, @ui.output
assert_match %r%^Complete$%, @ui.output
assert_match %r%^Compressing indicies$%, @ui.output
assert_equal '', @ui.error
end
def test_generate_index_specs
use_ui @ui do
@indexer.generate_index
end
specs_path = File.join @tempdir, "specs.#{@marshal_version}"
specs_dump = Gem.read_binary specs_path
specs = Marshal.load specs_dump
expected = [
['a', Gem::Version.new(1), 'ruby'],
['a', Gem::Version.new(2), 'ruby'],
['a_evil', Gem::Version.new(9), 'ruby'],
['b', Gem::Version.new(2), 'ruby'],
['c', Gem::Version.new('1.2'), 'ruby'],
['d', Gem::Version.new('2.0'), 'ruby'],
['pl', Gem::Version.new(1), 'i386-linux'],
]
assert_equal expected, specs
assert_same specs[0].first, specs[1].first,
'identical names not identical'
assert_same specs[0][1], specs[-1][1],
'identical versions not identical'
assert_same specs[0].last, specs[1].last,
'identical platforms not identical'
refute_same specs[1][1], specs[5][1],
'different versions not different'
end
def test_generate_index_latest_specs
use_ui @ui do
@indexer.generate_index
end
latest_specs_path = File.join @tempdir, "latest_specs.#{@marshal_version}"
latest_specs_dump = Gem.read_binary latest_specs_path
latest_specs = Marshal.load latest_specs_dump
expected = [
['a', Gem::Version.new(2), 'ruby'],
['a_evil', Gem::Version.new(9), 'ruby'],
['b', Gem::Version.new(2), 'ruby'],
['c', Gem::Version.new('1.2'), 'ruby'],
['d', Gem::Version.new('2.0'), 'ruby'],
['pl', Gem::Version.new(1), 'i386-linux'],
]
assert_equal expected, latest_specs
assert_same latest_specs[0][1], latest_specs[2][1],
'identical versions not identical'
assert_same latest_specs[0].last, latest_specs[1].last,
'identical platforms not identical'
end
def test_generate_index_prerelease_specs
use_ui @ui do
@indexer.generate_index
end
prerelease_specs_path = File.join @tempdir, "prerelease_specs.#{@marshal_version}"
prerelease_specs_dump = Gem.read_binary prerelease_specs_path
prerelease_specs = Marshal.load prerelease_specs_dump
assert_equal [['a', Gem::Version.new('3.a'), 'ruby'],
['d', Gem::Version.new('2.0.a'), 'ruby'],
['d', Gem::Version.new('2.0.b'), 'ruby']],
prerelease_specs
end
def test_update_index
use_ui @ui do
@indexer.generate_index
end
quickdir = File.join @tempdir, 'quick'
marshal_quickdir = File.join quickdir, "Marshal.#{@marshal_version}"
assert File.directory?(quickdir)
assert File.directory?(marshal_quickdir)
@d2_1 = quick_spec 'd', '2.1'
util_build_gem @d2_1
@d2_1_tuple = [@d2_1.name, @d2_1.version, @d2_1.original_platform]
@d2_1_a = quick_spec 'd', '2.2.a'
util_build_gem @d2_1_a
@d2_1_a_tuple = [@d2_1_a.name, @d2_1_a.version, @d2_1_a.original_platform]
gems = File.join @tempdir, 'gems'
FileUtils.mv @d2_1.cache_file, gems
FileUtils.mv @d2_1_a.cache_file, gems
use_ui @ui do
@indexer.update_index
end
assert_indexed marshal_quickdir, "#{File.basename(@d2_1.spec_file)}.rz"
specs_index = Marshal.load Gem.read_binary(@indexer.dest_specs_index)
assert_includes specs_index, @d2_1_tuple
refute_includes specs_index, @d2_1_a_tuple
latest_specs_index = Marshal.load \
Gem.read_binary(@indexer.dest_latest_specs_index)
assert_includes latest_specs_index, @d2_1_tuple
assert_includes latest_specs_index,
[@d2_0.name, @d2_0.version, @d2_0.original_platform]
refute_includes latest_specs_index, @d2_1_a_tuple
pre_specs_index = Marshal.load \
Gem.read_binary(@indexer.dest_prerelease_specs_index)
assert_includes pre_specs_index, @d2_1_a_tuple
refute_includes pre_specs_index, @d2_1_tuple
end
def assert_indexed(dir, name)
file = File.join dir, name
assert File.exist?(file), "#{file} does not exist"
end
def refute_indexed(dir, name)
file = File.join dir, name
refute File.exist?(file), "#{file} exists"
end
end if defined?(Builder::XChar)
|