139 lines
2.5 KiB
Haxe
139 lines
2.5 KiB
Haxe
package ;
|
|
|
|
import bindx.Bind;
|
|
import bindx.Bind.bind in bind;
|
|
import buddy.*;
|
|
|
|
using buddy.Should;
|
|
|
|
class BaseTest extends BuddySuite {
|
|
|
|
public function new() {
|
|
super();
|
|
|
|
describe("Base bindx functionality", {
|
|
|
|
var b:Bindable1;
|
|
var callNum:Int;
|
|
|
|
before({
|
|
b = new Bindable1();
|
|
callNum = 0;
|
|
});
|
|
|
|
it ("bindx should bind properties", {
|
|
var strFrom = b.str = "a";
|
|
|
|
bind(b.str, function (from, to) {
|
|
from.should.be(strFrom);
|
|
to.should.be(b.str);
|
|
callNum ++;
|
|
});
|
|
|
|
Bind.bind(b.str, function (from, to) {
|
|
from.should.be(strFrom);
|
|
to.should.be(b.str);
|
|
callNum ++;
|
|
});
|
|
|
|
b.str = "b";
|
|
callNum.should.be(2);
|
|
});
|
|
|
|
it("bindx should bind 'null' values", {
|
|
b.str = null;
|
|
var listener = function (from:String, to:String) {
|
|
from.should.be(null);
|
|
to.should.be(b.str);
|
|
callNum ++;
|
|
}
|
|
|
|
bind(b.str, listener);
|
|
Bind.bind(b.str, listener);
|
|
b.str = "";
|
|
callNum.should.be(1);
|
|
|
|
bindx.Bind.unbind(b.str, listener);
|
|
b.str = "1";
|
|
callNum.should.be(1);
|
|
});
|
|
|
|
it("bindx should notify manual", {
|
|
b.str = "3";
|
|
var f = "1";
|
|
var t = "2";
|
|
var listener = function (from:String, to:String) {
|
|
from.should.be(f);
|
|
to.should.be(t);
|
|
callNum ++;
|
|
};
|
|
bind(b.str, listener);
|
|
|
|
Bind.notify(b.str, f, t);
|
|
callNum.should.be(1);
|
|
});
|
|
|
|
it("bindx should unbind all listeners", {
|
|
bind(b.str, function (from, to) callNum++);
|
|
bind(b.str, function (from, to) callNum++);
|
|
|
|
Bind.unbind(b.str);
|
|
b.str = b.str + "1";
|
|
|
|
callNum.should.be(0);
|
|
});
|
|
|
|
it("bindx should unbind all bindings (signal exists)", {
|
|
bind(b.str, function (_, _) callNum++); // create binding signal
|
|
bind(b.bind, function () callNum++);
|
|
|
|
Bind.unbindAll(b);
|
|
|
|
b.str = b.str + "1";
|
|
b.bind();
|
|
callNum.should.be(0);
|
|
});
|
|
|
|
it("bindx should unbind all bindings (signal expected)", {
|
|
Bind.unbindAll(b);
|
|
|
|
b.str = b.str + "1";
|
|
b.bind();
|
|
callNum.should.be(0);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
@:bindable
|
|
class Bindable1 implements bindx.IBindable {
|
|
|
|
@:bindable(lazySignal=false)
|
|
public var str:String;
|
|
|
|
@:bindable
|
|
public var i(default, set):Int;
|
|
|
|
@:bindable
|
|
private var privateVar:Bool;
|
|
|
|
public function new() {
|
|
if (this.privateVarChanged == null)
|
|
throw "no private binding";
|
|
}
|
|
|
|
function set_i(v) {
|
|
i = v;
|
|
bindx.Bind.notify(this.bind);
|
|
return v;
|
|
}
|
|
|
|
public function noBind() {
|
|
|
|
}
|
|
|
|
@:bindable
|
|
public function bind() {
|
|
|
|
}
|
|
} |