adding tests to suite

This commit is contained in:
Ezequiel Bergamaschi 2014-10-26 18:43:16 -03:00
parent 8202248bad
commit 00ab6fd61a
3 changed files with 50 additions and 51 deletions

View File

@ -280,7 +280,7 @@
<source>lib/web2d.svg-min.js</source>
<source>libraries/hotkeys/jquery.hotkeys.js</source>
<source>libraries/underscorejs/underscore-min.js</source>
<source>libraries/bootstrap/underscore-min.js</source>
<source>libraries/bootstrap/js/bootstrap.js</source>
</preloadSources>
<sourceIncludes>
<include>header.js</include>

View File

@ -1,9 +1,9 @@
var setup = function() {
/*:DOC += <div id="mindplot"></div> */
var mapId = '1';
var mapXml = '<map name="1" version="pela"><topic central="true" text="test" id="1"><topic position="103,-52" order="" id="2"/><topic position="-134,-75" order="" id="3"/><topic position="-126,5" order="" id="4"/><topic position="-115,53" order="" id="5"/><topic position="-136,-35" order="" id="6"/></topic></map>';
var editorProperties = {"zoom":0.7, size: {width: "1366px", height:"768px"}};
var buildMindmapDesigner = function() {
var designer = null;
/*:DOC += <div id="mindplot"></div> */
var mapId = '1';
var mapXml = '<map name="1" version="pela"><topic central="true" text="test" id="1"><topic position="103,-52" order="" id="2"/><topic position="-134,-75" order="" id="3"/><topic position="-126,5" order="" id="4"/><topic position="-115,53" order="" id="5"/><topic position="-136,-35" order="" id="6"/></topic></map>';
var editorProperties = {"zoom":0.7, size: {width: "1366px", height:"768px"}};
var buildMindmapDesigner = function() {
// Initialize message logger ...
var container = $('<div id="mindplot"></div>');
@ -22,10 +22,11 @@ var setup = function() {
editorProperties.width = screenWidth;
editorProperties.height = screenHeight;
var designer = new mindplot.Designer(editorProperties, container);
/*var persistence = mindplot.PersistenceManager.getInstance();
designer.loadMap(mapId, mapXml);
*/
designer = new mindplot.Designer(editorProperties, container);
// Load map from XML file persisted on disk...
var persistence = new mindplot.LocalStorageManager("src/test/resources/welcome.xml");
var mindmap = persistence.load(mapId);
designer.loadMap(mindmap);
/*// Save map on load ....
if (editorProperties.saveOnLoad)
@ -36,34 +37,32 @@ var setup = function() {
}.delay(1000)
}*/
}
buildMindmapDesigner();
}
buildMindmapDesigner();
describe("Designer test suite", function() {
beforeEach(function() {
//setup();
});
it("testWorkspaceBuild", function(){
var id = $(document).attr('id');
expect(id).not.toBeNull();
//expect(id).not.toBeUndefined();
var mindplot = $(document).find('#mindplot');
expect(mindplot).not.toBeNull();
expect(mindplot).not.toBeUndefined();
});
/*testCentralTopicPresent:function(){
var centralTopic = designer.getCentralTopic();
assertNotNull(centralTopic);
it("testCentralTopicPresent", function(){
var centralTopic = designer.getMindmap().getCentralTopic();
expect($defined(centralTopic)).toBe(true);
var position = centralTopic.getPosition();
assertEquals(0,position.x);
assertEquals(0,position.y);
},
testMouseCreateMainTopic:function(){
var centralTopic = designer.getCentralTopic();
assertNotNull(centralTopic);
expect(position.x).toEqual(0);
expect(position.y).toEqual(0);
});
/*it("testCentralTopicPresent", function(){
var centralTopic = designer.getMindmap().getCentralTopic();
expect($defined(centralTopic)).toBe(true);
var target = designer.getWorkSpace().getScreenManager().getContainer();
var size = designer.getModel().getTopics().length;
fireNativeEvent('dblclick',target,new core.Point(50,50));
assertEquals(size+1, designer.getModel().getTopics().length);
}*/
});
*/
});

View File

@ -1 +1 @@
../../../../web2d/target/classes/web2d.svg-min.js
../../../../../web2d/target/classes/web2d.svg-min.js