blob: ecd27f9036a795128d56e3a9e1df1a51919d1c7a [file] [log] [blame]
var test = require('prova');
var mercury = require('mercury');
var proxyquire = require('proxyquireify')(require);
var browseComponent = proxyquire('../../../../src/components/browse/index', {
'./item-details/index': itemDetailsComponentMock
});
/*
* Create mocks for namespaceService used by browseNamespace.
* One mock that resolves in both glob and signature methods.
* One mock that rejects in both glob and signature methods.
*/
var mockItem = {
mountedName: 'mockItem',
objectName: 'foo/bar/mockItem',
isGlobbable: true
};
var namespaceServiceMock = {
isGlobbable: function(name) {
return Promise.resolve(true);
},
search: function(name, globQuery) {
return Promise.resolve(mercury.array([mockItem]));
}
};
var namespaceServiceMockWithFailure = {
isGlobbable: function(name) {
return Promise.resolve(true);
},
search: function(name, globQuery) {
return Promise.reject();
}
};
function itemDetailsComponentMock() {
return {
state: {},
events: {
displayItemDetails: function(data) {
return;
}
}
};
}
// Require the browseNamespace using the proxy so mock is used
var browseNamespace =
proxyquire('../../../../src/components/browse/browse-namespace',{
'../../services/namespace/service': namespaceServiceMock
});
var browseNamespaceWithFailure =
proxyquire('../../../../src/components/browse/browse-namespace',{
'../../services/namespace/service': namespaceServiceMockWithFailure
});
test('Updates state.namespace', function(t) {
t.plan(4);
var state = browseComponent().state;
var events = browseComponent().events;
// Should update state.namespace with data.namespace
browseNamespace(state, events, {
namespace: 'foo/bar'
});
t.equal(state.namespace(), 'foo/bar');
// Should not update state.namespace if data.namespace is null
browseNamespace(state, events, {
namespace: null
});
t.equal(state.namespace(), 'foo/bar');
// Should not update state.namespace if data.namespace is undefined
browseNamespace(state, events, {});
t.equal(state.namespace(), 'foo/bar');
// Should update state.namespace if data.namespace is empty string
browseNamespace(state, events, {
namespace: ''
});
t.equal(state.namespace(), '');
});
test('Updates state.globQuery', function(t) {
t.plan(4);
var state = browseComponent().state;
var events = browseComponent().events;
// Should update state.globQuery with data.globQuery
browseNamespace(state, events, {
globQuery: '**/*'
});
t.equal(state.globQuery(), '**/*');
// Should not update state.globQuery if data.globQuery is null
browseNamespace(state, events, {
globQuery: null
});
t.equal(state.globQuery(), '**/*');
// Should not update state.globQuery if data.globQuery is undefined
browseNamespace(state, events, {});
t.equal(state.globQuery(), '**/*');
// Empty glob keeps it empty in the state but behind the scenes does a '*'
browseNamespace(state, events, {
globQuery: ''
});
t.equal(state.globQuery(), '');
});
test('Updates state.items', function(t) {
t.plan(1);
var state = browseComponent().state;
var events = browseComponent().events;
// Should update the items to items returned by glob method call (async)
browseNamespace(state, events, {
globQuery: '*',
namespace: 'foo/bar'
});
// Wait until next tick and assert the expected state change
process.nextTick( function() {
var items = state.items();
t.deepEqual(items, [mockItem]);
});
});
test('Updates state.items to empty on failure', function(t) {
t.plan(1);
var state = browseComponent().state;
var events = browseComponent().events;
// Give initial non-empty value
state.items.push([mockItem]);
//Should reset the items to empty on failed glob method call (async)
browseNamespaceWithFailure(state, events, {
globQuery: '*',
namespace: 'foo/bar'
});
// Wait until next tick and assert the expected state change
process.nextTick( function() {
var items = state.items();
t.deepEqual(items, []);
});
});