Project

General

Profile

Download (3.61 KB) Statistics
| Branch: | Tag: | Revision:
/**
* Copyright 2014 Red Hat, Inc.
*
* This software is licensed to you under the GNU General Public
* License as published by the Free Software Foundation; either version
* 2 of the License (GPLv2) or (at your option) any later version.
* There is NO WARRANTY for this software, express or implied,
* including the implied warranties of MERCHANTABILITY,
* NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
* have received a copy of GPLv2 along with this software; if not, see
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
**/

describe('Factory: Filter', function() {
var $httpBackend,
filters;

beforeEach(module('Bastion.content-views', 'Bastion.utils'));

beforeEach(module(function($provide) {
filters = {
results: [
{ name: 'Filter1', id: 1 },
{ name: 'Filter2', id: 2 }
],
total: 10,
subtotal: 5,
limit: 5,
offset: 0
};
}));

beforeEach(inject(function($injector) {
$httpBackend = $injector.get('$httpBackend');
Filter = $injector.get('Filter');
}));

afterEach(function() {
$httpBackend.flush();
$httpBackend.verifyNoOutstandingExpectation();
$httpBackend.verifyNoOutstandingRequest();
});

it('provides a way to get a collection of filters', function() {
$httpBackend.expectGET('/api/v2/content_view_filters?content_view_id=1')
.respond(filters);

Filter.query({'content_view_id': 1}, function (response) {
var views = response;

expect(views.results.length).toBe(2);
expect(views.total).toBe(10);
expect(views.subtotal).toBe(5);
expect(views.offset).toBe(0);
});
});

it('provides a way to get a single filter', function() {
$httpBackend.expectGET('/api/v2/content_view_filters/1?content_view_id=1')
.respond(filters.results[0]);

Filter.get({'content_view_id': 1, filterId: 1}, function (filter) {
expect(filter).toBeDefined();
expect(filter.name).toEqual('Filter1');
});
});

it('provides a way to create a filter', function() {
var filter = {id: 1, name: 'Filter'};

$httpBackend.expectPOST('/api/v2/content_view_filters/1?content_view_id=1')
.respond(filter);

Filter.save({'content_view_id': 1}, filter, function (filter) {
expect(filter).toBeDefined();
expect(filter.name).toEqual('Filter');
});
});

it('provides a way to update a filter', function() {
$httpBackend.expectPUT('/api/v2/content_view_filters/1?content_view_id=1')
.respond(filters.results[0]);

Filter.update({'content_view_id': 1}, {id: 1, name: 'New Filter Name'}, function (filter) {
expect(filter).toBeDefined();
});
});

it('provides a way to get available errata for a filter', function() {
$httpBackend.expectGET('/api/v2/content_view_filters/1/available_errata?content_view_id=1')
.respond({});

Filter.availableErrata({'filterId': '1', 'content_view_id': 1}, function (errata) {
expect(errata).toBeDefined();
});
});

it('provides a way to retrieve current errata on a filter', function() {
$httpBackend.expectGET('/api/v2/content_view_filters/1/errata?content_view_id=1')
.respond({});

Filter.errata({'filterId': 1, 'content_view_id': 1}, function (errata) {
expect(errata).toBeDefined();
});
});

});
(10-10/15)