Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.04 KB | None | 0 0
  1. const mockArray: Array<Book> = [
  2. {
  3. id: 1,
  4. title: 'Harry Potter i Komnata Tajemnic',
  5. author: 'JK Rowling',
  6. description: 'Harry Potter and the Chamber of Secrets begins',
  7. isbn: '978-0-32-004843-2',
  8. category: Categories.FANTASY,
  9. publicationDate: new Date(),
  10. publisher: 'Bloomsbury',
  11. rentDate: new Date(),
  12. coverImg: 'https://7.allegroimg.com/original/1244a0/225af28542fd9e52774594e45937',
  13. availability: true,
  14. addDate: new Date(),
  15. renterEmail: '',
  16. returnDate: new Date(),
  17. },
  18. {
  19. id: 2,
  20. title: 'Selfish gene',
  21. author: 'Richard Dawkins',
  22. description: 'Inheriting the mantle of revolutionary biologist from Darwin, Watson, and Crick',
  23. isbn: '978-8-53-190188-1',
  24. category: Categories.SCIENCE,
  25. publicationDate: new Date(),
  26. publisher: 'Proszynski',
  27. rentDate: new Date(),
  28. coverImg: 'https://images-na.ssl-images-amazon.com/images/I/51Vc-rvnKYL._SX321_BO1,204,203,200_.jpg',
  29. availability: true,
  30. addDate: new Date(),
  31. renterEmail: '',
  32. returnDate: new Date(),
  33. },
  34. {
  35. id: 3,
  36. title: 'Solaris',
  37. author: 'Stanislaw Lem',
  38. description: 'Solaris is a wonderful book, about a few scientists on a lab hovering over a vast, mysterious ocean on an alien planet.',
  39. isbn: '978-8-68-456901-3',
  40. category: Categories.FANTASY,
  41. publicationDate: new Date(),
  42. publisher: 'Amanda',
  43. rentDate: new Date(),
  44. returnDate: new Date(),
  45. renterEmail: 'chico@gmail.com',
  46. coverImg: 'http://s.lubimyczytac.pl/upload/books/133000/133717/352x500.jpg',
  47. availability: true,
  48. addDate: new Date(),
  49. },
  50. {
  51. id: 4,
  52. title: 'Java dla zielonych',
  53. author: 'Adrian Buller',
  54. description: 'Do you want to know how to make your tests green? Master many to many?',
  55. isbn: '978-7-11-521048-7',
  56. category: Categories.SCIENCE,
  57. publicationDate: new Date(),
  58. publisher: 'ABlej',
  59. rentDate: new Date(),
  60. returnDate: new Date(),
  61. coverImg: 'https://images-na.ssl-images-amazon.com/images/I/71r9cLugLKL.jpg',
  62. availability: true,
  63. addDate: new Date(),
  64. renterEmail: 'anka@wp.pl',
  65. },
  66. {
  67. id: 5,
  68. title: 'Interwencje',
  69. author: 'Noam Chomsky',
  70. description: 'Punchy essays attack Americas international role under George W Bush.',
  71. isbn: '978-0-24-114386-5',
  72. category: Categories.SCIENCE,
  73. publicationDate: new Date(),
  74. publisher: 'ABlej',
  75. rentDate: new Date(),
  76. coverImg: 'https://upload.wikimedia.org/wikipedia/en/thumb/5/52/Interventions.jpg/220px-Interventions.jpg',
  77. availability: true,
  78. addDate: new Date(),
  79. renterEmail: '',
  80. returnDate: new Date(),
  81. },
  82. {
  83. id: 6,
  84. title: 'Co do grosza',
  85. author: 'Jeffrey Archer',
  86. description: 'The conned: an Oxford don, a revered society physician',
  87. isbn: '978-8-37-180475-5',
  88. category: Categories.NOVEL,
  89. publicationDate: new Date(),
  90. publisher: 'Gentles',
  91. rentDate: new Date(),
  92. returnDate: new Date(),
  93. renterEmail: 'anna@wp.com',
  94. coverImg: 'https://s.znak.com.pl//files/covers/card/f1/T195254.jpg',
  95. availability: true,
  96. addDate: new Date(),
  97. },
  98. {
  99. id: 7,
  100. title: 'Harry Potter i Czara Ognia',
  101. author: 'JK Rowling',
  102. description: 'Harry Potter is midway through his training as a wizard',
  103. isbn: '978-9-18-887751-2',
  104. category: Categories.FANTASY,
  105. publicationDate: new Date(),
  106. publisher: 'Bloomsbery',
  107. rentDate: new Date(),
  108. returnDate: new Date(),
  109. renterEmail: 'hp@onet.pl',
  110. coverImg: 'https://images.booksense.com/images/595/139/9780439139595.jpg',
  111. availability: true,
  112. addDate: new Date(),
  113. },
  114. {
  115. id: 8,
  116. title: 'Zbrodnia i kara',
  117. author: 'Fiodor Dostojewski',
  118. description: 'Crime and Punishment focuses on the mental anguish and moral dilemmas',
  119. isbn: '978-8-94-520545-2',
  120. category: Categories.NOVEL,
  121. publicationDate: new Date(),
  122. publisher: 'Kindenberg',
  123. rentDate: new Date(),
  124. renterEmail: 'kot@gmail.com',
  125. coverImg: 'https://images-na.ssl-images-amazon.com/images/I/41cQTFV5hPL.jpg',
  126. availability: false,
  127. addDate: new Date(),
  128. returnDate: new Date(),
  129. },
  130. {
  131. id: 9,
  132. title: 'Morderstwo na plebanii',
  133. author: 'Agatha Christie',
  134. description: 'In St. Mary Mead, no one is more despised than Colonel',
  135. isbn: '978-9-63-079215-8',
  136. category: Categories.NOVEL,
  137. publicationDate: new Date(),
  138. publisher: 'Collins Crime',
  139. rentDate: new Date(),
  140. returnDate: new Date(),
  141. renterEmail: 'ac@interia.pl',
  142. coverImg: 'http://s.lubimyczytac.pl/upload/books/269000/269714/422646-352x500.jpg',
  143. availability: true,
  144. addDate: new Date(),
  145. },
  146. {
  147. id: 10,
  148. title: 'Tajemnicza historia w Styles',
  149. author: 'Agatha Christie',
  150. description: 'One morning at Styles Court, an Essex country manor',
  151. isbn: '978-1-72-183293-4',
  152. category: Categories.NOVEL,
  153. publicationDate: new Date(),
  154. publisher: 'Collins Crime',
  155. rentDate: new Date(),
  156. returnDate: new Date(),
  157. renterEmail: 'ac@interia.pl',
  158. coverImg: 'http://ecsmedia.pl/c/tajemnicza-historia-w-styles-w-iext37523258.jpg',
  159. availability: true,
  160. addDate: new Date(),
  161. },
  162. {
  163. id: 11,
  164. title: 'Więźniowie geografii',
  165. author: 'Tim Marshall',
  166. description: 'Ten Maps That Tell You Everything You Need to Know About Global Politics.',
  167. isbn: '978-8-81-114792-3',
  168. category: Categories.SCIENCE,
  169. publicationDate: new Date(),
  170. publisher: 'Elliot',
  171. rentDate: new Date(),
  172. returnDate: new Date(),
  173. renterEmail: 'pojaj@gmail.com',
  174. coverImg: 'http://s.lubimyczytac.pl/upload/books/4367000/4367313/554065-352x500.jpg',
  175. availability: false,
  176. addDate: new Date(),
  177. },
  178. {
  179. id: 12,
  180. title: 'Więźniowie geografii',
  181. author: 'Tim Marshall',
  182. description: 'Ten Maps That Tell You Everything You Need to Know About Global Politics.',
  183. isbn: '978-8-81-114792-3',
  184. category: Categories.SCIENCE,
  185. publicationDate: new Date(),
  186. publisher: 'Elliot',
  187. rentDate: new Date(),
  188. coverImg: 'http://s.lubimyczytac.pl/upload/books/4367000/4367313/554065-352x500.jpg',
  189. availability: true,
  190. addDate: new Date(),
  191. renterEmail: '',
  192. returnDate: new Date()
  193. }
  194. ];
  195.  
  196. let service: BooksService;
  197. let httpClient: HttpTestingController;
  198. let injector: TestBed;
  199.  
  200. describe('BooksService', () => {
  201. beforeEach(async () =>
  202. TestBed.configureTestingModule({
  203. imports: [HttpClientTestingModule]
  204. })
  205. );
  206.  
  207. beforeEach(() => {
  208. injector = getTestBed();
  209. httpClient = injector.get(HttpTestingController);
  210. service = TestBed.get(BooksService);
  211. });
  212.  
  213. it('should be created', () => {
  214. expect(service).toBeTruthy();
  215. });
  216.  
  217. it('should search books', () => {
  218. const text = 'har';
  219. let searchedBooks: Array<Book>;
  220. spyOn(service, 'getBooks').and.returnValue(of(mockArray));
  221. service.searchBooks(text).subscribe(books => (searchedBooks = books));
  222. expect(searchedBooks.length).toBe(3);
  223. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement