2013-09-15 21:14:00 +00:00
|
|
|
local class = require 'middleclass'
|
2011-08-10 19:45:15 +00:00
|
|
|
|
2011-08-12 08:33:58 +00:00
|
|
|
context('A Class', function()
|
2011-08-10 19:45:15 +00:00
|
|
|
|
2011-08-13 01:12:21 +00:00
|
|
|
context('Default stuff', function()
|
|
|
|
|
|
|
|
local AClass
|
|
|
|
|
|
|
|
before(function()
|
|
|
|
AClass = class('AClass')
|
2011-08-10 19:45:15 +00:00
|
|
|
end)
|
|
|
|
|
2011-08-13 01:12:21 +00:00
|
|
|
context('name', function()
|
|
|
|
test('is correctly set', function()
|
|
|
|
assert_equal(AClass.name, 'AClass')
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
|
|
|
context('tostring', function()
|
|
|
|
test('returns "class *name*"', function()
|
|
|
|
assert_equal(tostring(AClass), 'class AClass')
|
|
|
|
end)
|
2011-08-10 19:45:15 +00:00
|
|
|
end)
|
|
|
|
|
2011-08-13 01:12:21 +00:00
|
|
|
context('()', function()
|
2013-09-15 21:14:00 +00:00
|
|
|
test('returns an object, like Class:new()', function()
|
2011-08-13 01:12:21 +00:00
|
|
|
local obj = AClass()
|
|
|
|
assert_equal(obj.class, AClass)
|
|
|
|
end)
|
2011-08-11 09:36:23 +00:00
|
|
|
end)
|
2011-08-13 01:12:21 +00:00
|
|
|
|
2011-08-13 21:58:55 +00:00
|
|
|
context('include', function()
|
|
|
|
test('throws an error when used without the :', function()
|
|
|
|
assert_error(function() AClass.include() end)
|
|
|
|
end)
|
|
|
|
test('throws an error when passed a non-table:', function()
|
|
|
|
assert_error(function() AClass:include(1) end)
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2011-08-13 22:08:33 +00:00
|
|
|
context('subclass', function()
|
|
|
|
|
|
|
|
test('throws an error when used without the :', function()
|
|
|
|
assert_error(function() AClass.subclass() end)
|
|
|
|
end)
|
|
|
|
|
|
|
|
test('throws an error when no name is given', function()
|
|
|
|
assert_error( function() AClass:subclass() end)
|
|
|
|
end)
|
|
|
|
|
|
|
|
context('when given a subclass name', function()
|
|
|
|
|
|
|
|
local SubClass
|
|
|
|
|
|
|
|
before(function()
|
|
|
|
function AClass.static:subclassed(other) self.static.child = other end
|
|
|
|
SubClass = AClass:subclass('SubClass')
|
|
|
|
end)
|
|
|
|
|
|
|
|
test('it returns a class with the correct name', function()
|
|
|
|
assert_equal(SubClass.name, 'SubClass')
|
|
|
|
end)
|
|
|
|
|
|
|
|
test('it returns a class with the correct superclass', function()
|
|
|
|
assert_equal(SubClass.super, AClass)
|
|
|
|
end)
|
|
|
|
|
|
|
|
test('it invokes the subclassed hook method', function()
|
|
|
|
assert_equal(SubClass, AClass.child)
|
|
|
|
end)
|
|
|
|
|
2011-08-14 16:39:57 +00:00
|
|
|
test('it includes the subclass in the list of subclasses', function()
|
|
|
|
assert_true(AClass.subclasses[SubClass])
|
|
|
|
end)
|
|
|
|
|
2011-08-13 22:08:33 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
2011-08-11 09:36:23 +00:00
|
|
|
end)
|
|
|
|
|
2011-08-13 22:08:33 +00:00
|
|
|
|
|
|
|
|
2011-08-10 19:45:15 +00:00
|
|
|
context('attributes', function()
|
|
|
|
|
|
|
|
local A, B
|
|
|
|
|
|
|
|
before(function()
|
|
|
|
A = class('A')
|
|
|
|
A.static.foo = 'foo'
|
|
|
|
|
|
|
|
B = class('B', A)
|
|
|
|
end)
|
|
|
|
|
2011-08-12 08:33:58 +00:00
|
|
|
test('are available after being initialized', function()
|
2011-08-10 19:45:15 +00:00
|
|
|
assert_equal(A.foo, 'foo')
|
|
|
|
end)
|
|
|
|
|
2011-08-12 08:33:58 +00:00
|
|
|
test('are available for subclasses', function()
|
2011-08-10 19:45:15 +00:00
|
|
|
assert_equal(B.foo, 'foo')
|
|
|
|
end)
|
2013-09-15 21:14:00 +00:00
|
|
|
|
2011-08-12 08:33:58 +00:00
|
|
|
test('are overridable by subclasses, without affecting the superclasses', function()
|
|
|
|
B.static.foo = 'chunky bacon'
|
2011-08-10 19:45:15 +00:00
|
|
|
assert_equal(B.foo, 'chunky bacon')
|
|
|
|
assert_equal(A.foo, 'foo')
|
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
context('methods', function()
|
|
|
|
|
|
|
|
local A, B
|
|
|
|
|
|
|
|
before(function()
|
|
|
|
A = class('A')
|
2011-08-12 08:33:58 +00:00
|
|
|
function A.static:foo() return 'foo' end
|
2011-08-10 19:45:15 +00:00
|
|
|
|
|
|
|
B = class('B', A)
|
|
|
|
end)
|
|
|
|
|
2011-08-12 08:33:58 +00:00
|
|
|
test('are available after being initialized', function()
|
2011-08-10 19:45:15 +00:00
|
|
|
assert_equal(A:foo(), 'foo')
|
|
|
|
end)
|
|
|
|
|
2011-08-12 08:33:58 +00:00
|
|
|
test('are available for subclasses', function()
|
2011-08-10 19:45:15 +00:00
|
|
|
assert_equal(B:foo(), 'foo')
|
|
|
|
end)
|
2013-09-15 21:14:00 +00:00
|
|
|
|
2011-08-12 08:33:58 +00:00
|
|
|
test('are overridable by subclasses, without affecting the superclasses', function()
|
|
|
|
function B.static:foo() return 'chunky bacon' end
|
2011-08-10 19:45:15 +00:00
|
|
|
assert_equal(B:foo(), 'chunky bacon')
|
|
|
|
assert_equal(A:foo(), 'foo')
|
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|