mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
adding tests to suite
This commit is contained in:
parent
ea0a507044
commit
6dbd19899b
@ -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>
|
||||
|
@ -1,4 +1,4 @@
|
||||
var setup = 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>';
|
||||
@ -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)
|
||||
@ -38,32 +39,30 @@ var setup = function() {
|
||||
|
||||
}
|
||||
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);
|
||||
}*/
|
||||
});
|
||||
*/
|
||||
|
||||
});
|
@ -1 +1 @@
|
||||
../../../../web2d/target/classes/web2d.svg-min.js
|
||||
../../../../../web2d/target/classes/web2d.svg-min.js
|
Loading…
Reference in New Issue
Block a user