mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
trying to get angular mocks / testing to work
This commit is contained in:
parent
16599a07a9
commit
ba6a6292f9
26
src/test/specs/ctrl-specs.js
Normal file
26
src/test/specs/ctrl-specs.js
Normal file
@ -0,0 +1,26 @@
|
||||
define([
|
||||
'angular',
|
||||
'angularMocks',
|
||||
'panels/graphite/module'
|
||||
], function(angular) {
|
||||
|
||||
/* describe('controller', function() {
|
||||
var scope, metricCtrl;
|
||||
|
||||
beforeEach(function() {
|
||||
angular.mock.inject(function($rootScope, $controller) {
|
||||
scope = $rootScope.$new();
|
||||
metricCtrl = $controller('kibana.panels.graphite.graphite', {
|
||||
$scope: scope
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
it('should work', function() {
|
||||
metricCtrl.toggleYAxis({alias:'myAlias'});
|
||||
scope.panel.aliasYAxis['myAlias'].should.be(2);
|
||||
});
|
||||
|
||||
});*/
|
||||
|
||||
});
|
@ -1,5 +1,5 @@
|
||||
define([
|
||||
'app/services/graphite/gfunc'
|
||||
'services/graphite/gfunc'
|
||||
], function(gfunc) {
|
||||
|
||||
describe('when creating func instance from func names', function() {
|
||||
|
@ -1,5 +1,5 @@
|
||||
define([
|
||||
'app/services/graphite/lexer'
|
||||
'services/graphite/lexer'
|
||||
], function(Lexer) {
|
||||
|
||||
describe('when lexing graphite expression', function() {
|
||||
|
@ -1,5 +1,5 @@
|
||||
define([
|
||||
'app/services/graphite/parser'
|
||||
'services/graphite/parser'
|
||||
], function(Parser) {
|
||||
|
||||
describe('when parsing', function() {
|
||||
|
@ -1,22 +1,111 @@
|
||||
require.config({
|
||||
baseUrl: 'base',
|
||||
baseUrl: 'base/app',
|
||||
|
||||
paths: {
|
||||
underscore: 'app/components/underscore.extended',
|
||||
'underscore-src': 'vendor/underscore',
|
||||
specs: '../test/specs',
|
||||
config: '../config.sample',
|
||||
kbn: 'components/kbn',
|
||||
|
||||
settings: 'components/settings',
|
||||
crypto: '../vendor/crypto.min',
|
||||
underscore: 'components/underscore.extended',
|
||||
'underscore-src': '../vendor/underscore',
|
||||
|
||||
moment: '../vendor/moment',
|
||||
chromath: '../vendor/chromath',
|
||||
|
||||
angular: '../vendor/angular/angular',
|
||||
angularMocks: '../vendor/angular/angular-mocks',
|
||||
'angular-dragdrop': '../vendor/angular/angular-dragdrop',
|
||||
'angular-strap': '../vendor/angular/angular-strap',
|
||||
'angular-sanitize': '../vendor/angular/angular-sanitize',
|
||||
timepicker: '../vendor/angular/timepicker',
|
||||
datepicker: '../vendor/angular/datepicker',
|
||||
bindonce: '../vendor/angular/bindonce',
|
||||
crypto: '../vendor/crypto.min',
|
||||
spectrum: '../vendor/spectrum',
|
||||
|
||||
jquery: '../vendor/jquery/jquery-1.8.0',
|
||||
|
||||
bootstrap: '../vendor/bootstrap/bootstrap',
|
||||
bindonce: '../vendor/angular/bindonce',
|
||||
|
||||
'jquery-ui': '../vendor/jquery/jquery-ui-1.10.3',
|
||||
|
||||
'extend-jquery': 'components/extend-jquery',
|
||||
|
||||
'jquery.flot': '../vendor/jquery/jquery.flot',
|
||||
'jquery.flot.pie': '../vendor/jquery/jquery.flot.pie',
|
||||
'jquery.flot.events': '../vendor/jquery/jquery.flot.events',
|
||||
'jquery.flot.selection': '../vendor/jquery/jquery.flot.selection',
|
||||
'jquery.flot.stack': '../vendor/jquery/jquery.flot.stack',
|
||||
'jquery.flot.stackpercent':'../vendor/jquery/jquery.flot.stackpercent',
|
||||
'jquery.flot.time': '../vendor/jquery/jquery.flot.time',
|
||||
'jquery.flot.byte': '../vendor/jquery/jquery.flot.byte',
|
||||
|
||||
modernizr: '../vendor/modernizr-2.6.1',
|
||||
elasticjs: '../vendor/elasticjs/elastic-angular-client',
|
||||
},
|
||||
|
||||
shim: {
|
||||
underscore: {
|
||||
exports: '_'
|
||||
},
|
||||
|
||||
bootstrap: {
|
||||
deps: ['jquery']
|
||||
},
|
||||
|
||||
modernizr: {
|
||||
exports: 'Modernizr'
|
||||
},
|
||||
|
||||
angular: {
|
||||
deps: ['jquery', 'config'],
|
||||
exports: 'angular'
|
||||
},
|
||||
|
||||
angularMocks: {
|
||||
deps: ['angular'],
|
||||
},
|
||||
|
||||
crypto: {
|
||||
exports: 'Crypto'
|
||||
},
|
||||
|
||||
'jquery-ui': ['jquery'],
|
||||
'jquery.flot': ['jquery'],
|
||||
'jquery.flot.byte': ['jquery', 'jquery.flot'],
|
||||
'jquery.flot.pie': ['jquery', 'jquery.flot'],
|
||||
'jquery.flot.events': ['jquery', 'jquery.flot'],
|
||||
'jquery.flot.selection':['jquery', 'jquery.flot'],
|
||||
'jquery.flot.stack': ['jquery', 'jquery.flot'],
|
||||
'jquery.flot.stackpercent':['jquery', 'jquery.flot'],
|
||||
'jquery.flot.time': ['jquery', 'jquery.flot'],
|
||||
|
||||
'angular-sanitize': ['angular'],
|
||||
'angular-cookies': ['angular'],
|
||||
'angular-dragdrop': ['jquery','jquery-ui','angular'],
|
||||
'angular-loader': ['angular'],
|
||||
'angular-mocks': ['angular'],
|
||||
'angular-resource': ['angular'],
|
||||
'angular-route': ['angular'],
|
||||
'angular-touch': ['angular'],
|
||||
'bindonce': ['angular'],
|
||||
'angular-strap': ['angular', 'bootstrap','timepicker', 'datepicker'],
|
||||
|
||||
timepicker: ['jquery', 'bootstrap'],
|
||||
datepicker: ['jquery', 'bootstrap'],
|
||||
|
||||
elasticjs: ['angular', '../vendor/elasticjs/elastic'],
|
||||
}
|
||||
});
|
||||
|
||||
require([
|
||||
'test/specs/lexer-specs',
|
||||
'test/specs/parser-specs',
|
||||
'test/specs/gfunc-specs',
|
||||
'specs/lexer-specs',
|
||||
'specs/parser-specs',
|
||||
'specs/gfunc-specs',
|
||||
'specs/ctrl-specs',
|
||||
], function () {
|
||||
window.__karma__.start();
|
||||
});
|
1886
src/vendor/angular/angular-mocks.js
vendored
Normal file
1886
src/vendor/angular/angular-mocks.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user