2015-08-25 05:55:54 +00:00
|
|
|
describe("StatsController", function () {
|
|
|
|
var $scope, $httpBackend, $routeParams;
|
|
|
|
|
2016-09-04 02:50:37 +00:00
|
|
|
beforeEach(angular.mock.module('portainer'));
|
2015-08-25 05:55:54 +00:00
|
|
|
|
|
|
|
beforeEach(inject(function (_$rootScope_, _$httpBackend_, $controller, _$routeParams_) {
|
|
|
|
$scope = _$rootScope_.$new();
|
|
|
|
$httpBackend = _$httpBackend_;
|
|
|
|
$routeParams = _$routeParams_;
|
|
|
|
$routeParams.id = 'b17882378cee8ec0136f482681b764cca430befd52a9bfd1bde031f49b8bba9f';
|
|
|
|
$controller('StatsController', {
|
|
|
|
'$scope': $scope,
|
|
|
|
'$routeParams': $routeParams
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2015-08-29 04:26:39 +00:00
|
|
|
//it("should test controller initialize", function () {
|
|
|
|
// $httpBackend.expectGET('dockerapi/containers/b17882378cee8ec0136f482681b764cca430befd52a9bfd1bde031f49b8bba9f/stats?stream=false').respond(200);
|
|
|
|
// //expect($scope.ps_args).toBeDefined();
|
|
|
|
// $httpBackend.flush();
|
|
|
|
//});
|
|
|
|
//
|
|
|
|
//it("a correct top request to the Docker remote API", function () {
|
|
|
|
// //$httpBackend.expectGET('dockerapi/containers/' + $routeParams.id + '/top?ps_args=').respond(200);
|
|
|
|
// //$routeParams.id = '123456789123456789123456789';
|
|
|
|
// //$scope.ps_args = 'aux';
|
|
|
|
// //$httpBackend.expectGET('dockerapi/containers/' + $routeParams.id + '/top?ps_args=' + $scope.ps_args).respond(200);
|
|
|
|
// //$scope.getTop();
|
|
|
|
// //$httpBackend.flush();
|
|
|
|
//});
|
2015-08-25 05:55:54 +00:00
|
|
|
});
|