Created
November 7, 2013 15:21
-
-
Save davidpdrsn/7356367 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('lastViewedPages', function() { | |
var pages = null; | |
beforeEach(function() { | |
localStorage.clear(); | |
pages = new LastViewedPages(); | |
}); | |
it("doesn't come with pages already saved", function() { | |
expect(pages.all()).toEqual([]); | |
}); | |
it('can be constructed with pages', function() { | |
var pages = new LastViewedPages({ pages: [{ title: "Google.dk", url: "http://google.dk" }, | |
{ title: "Cabana.dk", url: "http://cabana.dk" }] }); | |
expect(pages.all()).toEqual([ | |
{ title: "Google.dk", url: "http://google.dk" }, | |
{ title: "Cabana.dk", url: "http://cabana.dk" } | |
]); | |
}); | |
it('saves an empty array to localStorage when constructored', function() { | |
pages = new LastViewedPages(); | |
expect(localStorageGetObject('lastViewedPages')).toEqual([]); | |
}); | |
describe('#addPage', function() { | |
describe('when there are no pages saved', function() { | |
it('saves the page at the start of the list', function() { | |
pages.addPage({ title: "Cabana.dk", url: "http://cabana.dk" }); | |
expect(pages.all()).toEqual([ | |
{ title: "Cabana.dk", url: "http://cabana.dk" } | |
]); | |
}); | |
}); | |
describe('when there are pages saved', function() { | |
it('saves the page at the top of the list', function() { | |
pages.addPage({ title: "Cabana.dk", url: "http://cabana.dk" }); | |
pages.addPage({ title: "Google.dk", url: "http://google.dk" }); | |
expect(pages.all()).toEqual([ | |
{ title: "Google.dk", url: "http://google.dk" }, | |
{ title: "Cabana.dk", url: "http://cabana.dk" } | |
]); | |
}); | |
}); | |
describe('when the page is already saved', function() { | |
it('deletes the previous entry and adds the pages at the start of the list', function() { | |
pages.addPage({ title: "Cabana.dk", url: "http://cabana.dk" }); | |
pages.addPage({ title: "Google.dk", url: "http://google.dk" }); | |
pages.addPage({ title: "Cabana.dk", url: "http://cabana.dk" }); | |
expect(pages.all()).toEqual([ | |
{ title: "Cabana.dk", url: "http://cabana.dk" }, | |
{ title: "Google.dk", url: "http://google.dk" } | |
]); | |
}); | |
}); | |
it("doesn't save more than n pages", function() { | |
var pages = new LastViewedPages({ max: 3 }); | |
pages.addPage({ title: "Cabana.dk", url: "http://cabana.dk" }); | |
pages.addPage({ title: "Cabana.dk", url: "http://cabana.dk" }); | |
pages.addPage({ title: "Cabana.dk", url: "http://cabana.dk" }); | |
pages.addPage({ title: "Google.dk", url: "http://google.dk" }); | |
pages.addPage({ title: "Yahoo.dk", url: "http://yahoo.dk" }); | |
pages.addPage({ title: "Facebook.dk", url: "http://facebook.dk" }); | |
expect(pages.all()).toEqual([ | |
{ title: "Facebook.dk", url: "http://facebook.dk" }, | |
{ title: "Yahoo.dk", url: "http://yahoo.dk" }, | |
{ title: "Google.dk", url: "http://google.dk" } | |
]); | |
}); | |
it('saves the pages to localStorage', function() { | |
pages.addPage({ title: "Cabana.dk", url: "http://cabana.dk" }); | |
pages.addPage({ title: "Google.dk", url: "http://google.dk" }); | |
pages.addPage({ title: "Cabana.dk", url: "http://cabana.dk" }); | |
expect(localStorageGetObject('lastViewedPages')).toEqual([ | |
{ title: "Cabana.dk", url: "http://cabana.dk" }, | |
{ title: "Google.dk", url: "http://google.dk" } | |
]); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment