| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- define([
- './helpers',
- 'app/features/dashboard/shareModalCtrl',
- 'app/features/panellinks/linkSrv',
- 'app/core/config',
- ], function(helpers, shareModalCtrl, linkSrv, config) {
- 'use strict';
- describe('ShareModalCtrl', function() {
- var ctx = new helpers.ControllerTestContext();
- function setTime(range) {
- ctx.timeSrv.timeRange = sinon.stub().returns(range);
- }
- beforeEach(function() {
- config.bootData = {
- user: {
- orgId: 1
- }
- };
- });
- setTime({ from: new Date(1000), to: new Date(2000) });
- beforeEach(module('grafana.controllers'));
- beforeEach(module('grafana.services'));
- beforeEach(module(function($compileProvider) {
- $compileProvider.preAssignBindingsEnabled(true);
- }));
- beforeEach(ctx.providePhase());
- beforeEach(ctx.createControllerPhase('ShareModalCtrl'));
- describe('shareUrl with current time range and panel', function() {
- it('should generate share url absolute time', function() {
- ctx.$location.path('/test');
- ctx.scope.panel = { id: 22 };
- ctx.scope.init();
- expect(ctx.scope.shareUrl).to.be('http://server/#!/test?from=1000&to=2000&orgId=1&panelId=22&fullscreen');
- });
- it('should generate render url', function() {
- ctx.$location.$$absUrl = 'http://dashboards.grafana.com/dashboard/db/my-dash';
- ctx.scope.panel = { id: 22 };
- ctx.scope.init();
- var base = 'http://dashboards.grafana.com/render/dashboard-solo/db/my-dash';
- var params = '?from=1000&to=2000&orgId=1&panelId=22&width=1000&height=500&tz=UTC';
- expect(ctx.scope.imageUrl).to.contain(base + params);
- });
- it('should remove panel id when no panel in scope', function() {
- ctx.$location.path('/test');
- ctx.scope.options.forCurrent = true;
- ctx.scope.panel = null;
- ctx.scope.init();
- expect(ctx.scope.shareUrl).to.be('http://server/#!/test?from=1000&to=2000&orgId=1');
- });
- it('should add theme when specified', function() {
- ctx.$location.path('/test');
- ctx.scope.options.theme = 'light';
- ctx.scope.panel = null;
- ctx.scope.init();
- expect(ctx.scope.shareUrl).to.be('http://server/#!/test?from=1000&to=2000&orgId=1&theme=light');
- });
- it('should remove fullscreen from image url when is first param in querystring and modeSharePanel is true', function() {
- ctx.$location.url('/test?fullscreen&edit');
- ctx.scope.modeSharePanel = true;
- ctx.scope.panel = { id: 1 };
- ctx.scope.buildUrl();
- expect(ctx.scope.shareUrl).to.contain('?fullscreen&edit&from=1000&to=2000&orgId=1&panelId=1');
- expect(ctx.scope.imageUrl).to.contain('?from=1000&to=2000&orgId=1&panelId=1&width=1000&height=500&tz=UTC');
- });
- it('should remove edit from image url when is first param in querystring and modeSharePanel is true', function() {
- ctx.$location.url('/test?edit&fullscreen');
- ctx.scope.modeSharePanel = true;
- ctx.scope.panel = { id: 1 };
- ctx.scope.buildUrl();
- expect(ctx.scope.shareUrl).to.contain('?edit&fullscreen&from=1000&to=2000&orgId=1&panelId=1');
- expect(ctx.scope.imageUrl).to.contain('?from=1000&to=2000&orgId=1&panelId=1&width=1000&height=500&tz=UTC');
- });
- it('should include template variables in url', function() {
- ctx.$location.path('/test');
- ctx.scope.options.includeTemplateVars = true;
- ctx.templateSrv.fillVariableValuesForUrl = function(params) {
- params['var-app'] = 'mupp';
- params['var-server'] = 'srv-01';
- };
- ctx.scope.buildUrl();
- expect(ctx.scope.shareUrl).to.be('http://server/#!/test?from=1000&to=2000&orgId=1&var-app=mupp&var-server=srv-01');
- });
- });
- });
- });
|