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 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
|
module ModuleSpecs
def self.without_test_modules(modules)
ignore = %w[MSpecRSpecAdapter PP::ObjectMixin ModuleSpecs::IncludedInObject MainSpecs::Module ConstantSpecs::ModuleA]
modules.reject { |k| ignore.include?(k.name) }
end
CONST = :plain_constant
class NamedClass
end
module PrivConstModule
PRIVATE_CONSTANT = 1
private_constant :PRIVATE_CONSTANT
PUBLIC_CONSTANT = 2
end
class Subclass < Module
end
class SubclassSpec
end
class RemoveClassVariable
end
module LookupModInMod
INCS = :ethereal
end
module LookupMod
include LookupModInMod
MODS = :rockers
end
class Lookup
include LookupMod
LOOKIE = :lookie
end
class LookupChild < Lookup
end
module ModuleWithPrepend
prepend LookupMod
end
class WithPrependedModule
include ModuleWithPrepend
end
class Parent
# For private_class_method spec
def self.private_method; end
private_class_method :private_method
def undefed_method() end
undef_method :undefed_method
def parent_method; end
def another_parent_method; end
# For public_class_method spec
private
def self.public_method; end
public_class_method :public_method
public
def public_parent() end
protected
def protected_parent() end
private
def private_parent() end
end
module Basic
def public_module() end
protected
def protected_module() end
private
def private_module() end
end
module Super
include Basic
def public_super_module() end
protected
def protected_super_module() end
private
def private_super_module() end
def super_included_method; end
class SuperChild
end
end
module Internal
end
class Child < Parent
include Super
class << self
include Internal
end
attr_accessor :accessor_method
def public_child() end
undef_method :parent_method
undef_method :another_parent_method
protected
def protected_child() end
private
def private_child() end
end
class Grandchild < Child
undef_method :super_included_method
end
class Child2 < Parent
attr_reader :foo
end
# Be careful touching the Counts* classes as there used for testing
# private_instance_methods, public_instance_methods, etc. So adding, removing
# a method will break those tests.
module CountsMixin
def public_3; end
public :public_3
def private_3; end
private :private_3
def protected_3; end
protected :protected_3
end
class CountsParent
include CountsMixin
def public_2; end
private
def private_2; end
protected
def protected_2; end
end
class CountsChild < CountsParent
def public_1; end
private
def private_1; end
protected
def protected_1; end
end
module AddConstant
end
module A
CONSTANT_A = :a
OVERRIDE = :a
def ma(); :a; end
def self.cma(); :a; end
end
module B
CONSTANT_B = :b
OVERRIDE = :b
include A
def mb(); :b; end
def self.cmb(); :b; end
end
class C
OVERRIDE = :c
include B
end
module Z
MODULE_SPEC_TOPLEVEL_CONSTANT = 1
end
module Alias
def report() :report end
alias publish report
end
class Allonym
include ModuleSpecs::Alias
end
class Aliasing
def self.make_alias(*a)
alias_method(*a)
end
def public_one; 1; end
def public_two(n); n * 2; end
private
def private_one; 1; end
protected
def protected_one; 1; end
end
class AliasingSubclass < Aliasing
end
module AliasingSuper
module Parent
def super_call(arg)
arg
end
end
module Child
include Parent
def super_call(arg)
super(arg)
end
end
class Target
include Child
alias_method :alias_super_call, :super_call
alias_method :super_call, :alias_super_call
end
class RedefineAfterAlias
include Parent
def super_call(arg)
super(arg)
end
alias_method :alias_super_call, :super_call
def super_call(arg)
:wrong
end
end
end
module ReopeningModule
def foo; true; end
module_function :foo
private :foo
end
# Yes, we want to re-open the module
module ReopeningModule
alias :foo2 :foo
module_function :foo2
end
module Nesting
@tests = {}
def self.[](name); @tests[name]; end
def self.[]=(name, val); @tests[name] = val; end
def self.meta; class << self; self; end; end
Nesting[:basic] = Module.nesting
module ::ModuleSpecs
Nesting[:open_first_level] = Module.nesting
end
class << self
Nesting[:open_meta] = Module.nesting
end
def self.called_from_module_method
Module.nesting
end
class NestedClass
Nesting[:nest_class] = Module.nesting
def self.called_from_class_method
Module.nesting
end
def called_from_inst_method
Module.nesting
end
end
end
Nesting[:first_level] = Module.nesting
module InstanceMethMod
def bar(); :bar; end
end
class InstanceMeth
include InstanceMethMod
def foo(); :foo; end
end
class InstanceMethChild < InstanceMeth
end
module ClassVars
class A
@@a_cvar = :a_cvar
end
module M
@@m_cvar = :m_cvar
end
class B < A
include M
@@b_cvar = :b_cvar
end
end
class CVars
@@cls = :class
# Singleton class lexical scopes are ignored for class variables
class << self
def cls
# This looks in the parent lexical scope, class CVars
@@cls
end
# This actually adds it to the parent lexical scope, class CVars
@@meta = :metainfo
end
def self.meta
@@meta
end
def meta
@@meta
end
end
class SubCVars < CVars
@@sub = :sub
end
module MVars
@@mvar = :mvar
end
class SubModule < Module
attr_reader :special
def initialize
@special = 10
end
end
module MA; end
module MB
include MA
end
module MC; end
class MultipleIncludes
include MB
end
# empty modules
module M1; end
module M2; end
module M3; end
module Autoload
def self.use_ex1
begin
begin
raise "test exception"
rescue ModuleSpecs::Autoload::EX1
end
rescue RuntimeError
return :good
end
end
class Parent
end
class Child < Parent
end
module FromThread
module A
autoload :B, fixture(__FILE__, "autoload_empty.rb")
class B
autoload :C, fixture(__FILE__, "autoload_abc.rb")
def self.foo
C.foo
end
end
end
class D < A::B; end
end
end
# This class isn't inherited from or included in anywhere.
# It exists to test the constant scoping rules.
class Detached
DETACHED_CONSTANT = :d
end
class ParentPrivateMethodRedef
private
def private_method_redefined
:before_redefinition
end
end
class ChildPrivateMethodMadePublic < ParentPrivateMethodRedef
public :private_method_redefined
end
class ParentPrivateMethodRedef
def private_method_redefined
:after_redefinition
end
end
module CyclicAppendA
end
module CyclicAppendB
include CyclicAppendA
end
module CyclicPrepend
end
module ExtendObject
C = :test
def test_method
"hello test"
end
end
module ExtendObjectPrivate
class << self
def extend_object(obj)
ScratchPad.record :extended
end
private :extend_object
end
end
class CyclicBarrier
def initialize(count = 1)
@count = count
@state = 0
@mutex = Mutex.new
@cond = ConditionVariable.new
end
def await
@mutex.synchronize do
@state += 1
if @state >= @count
@state = 0
@cond.broadcast
true
else
@cond.wait @mutex
false
end
end
end
def enabled?
@mutex.synchronize { @count != -1 }
end
def disable!
@mutex.synchronize do
@count = -1
@cond.broadcast
end
end
end
class ThreadSafeCounter
def initialize(value = 0)
@value = 0
@mutex = Mutex.new
end
def get
@mutex.synchronize { @value }
end
def increment_and_get
@mutex.synchronize do
prev_value = @value
@value += 1
prev_value
end
end
end
module ShadowingOuter
module M
SHADOW = 123
end
module N
SHADOW = 456
end
end
module UnboundMethodTest
def foo
'bar'
end
end
module ClassEvalTest
def self.get_constant_from_scope
module_eval("Lookup")
end
def self.get_constant_from_scope_with_send(method)
send(method, "Lookup")
end
end
class RecordIncludedModules
def self.inherited(base)
ScratchPad.record base
end
end
module SingletonOnModuleCase
module Foo
class << Foo
def included(base)
base.included_called
super
end
end
end
class Bar
@included_called = false
class << self
def included_called
@included_called = true
end
def included_called?
@included_called
end
end
end
end
module CaseCompareOnSingleton
def self.===(*)
raise 'method contents are irrelevant to test'
end
end
m = Module.new do
def foo
end
private :foo
end
EmptyFooMethod = m.instance_method(:foo)
# for undefined_instance_methods spec
module UndefinedInstanceMethods
module Super
def super_included_method; end
end
class Parent
def undefed_method; end
undef_method :undefed_method
def parent_method; end
def another_parent_method; end
end
class Child < Parent
include Super
undef_method :parent_method
undef_method :another_parent_method
end
class Grandchild < Child
undef_method :super_included_method
end
end
end
class Object
def module_specs_public_method_on_object; end
def module_specs_private_method_on_object; end
private :module_specs_private_method_on_object
def module_specs_protected_method_on_object; end
protected :module_specs_private_method_on_object
def module_specs_private_method_on_object_for_kernel_public; end
private :module_specs_private_method_on_object_for_kernel_public
def module_specs_public_method_on_object_for_kernel_protected; end
def module_specs_public_method_on_object_for_kernel_private; end
end
module Kernel
def module_specs_public_method_on_kernel; end
alias_method :module_specs_alias_on_kernel, :module_specs_public_method_on_object
public :module_specs_private_method_on_object_for_kernel_public
protected :module_specs_public_method_on_object_for_kernel_protected
private :module_specs_public_method_on_object_for_kernel_private
end
ModuleSpecs::Nesting[:root_level] = Module.nesting
|