예제 #1
0
  @Test
  @Transactional
  public void updateBlog() throws Exception {
    // Initialize the database
    blogRepository.saveAndFlush(blog);

    int databaseSizeBeforeUpdate = blogRepository.findAll().size();

    // Update the blog
    blog.setName(UPDATED_NAME);
    blog.setHandle(UPDATED_HANDLE);

    restBlogMockMvc
        .perform(
            put("/api/blogs")
                .contentType(TestUtil.APPLICATION_JSON_UTF8)
                .content(TestUtil.convertObjectToJsonBytes(blog)))
        .andExpect(status().isOk());

    // Validate the Blog in the database
    List<Blog> blogs = blogRepository.findAll();
    assertThat(blogs).hasSize(databaseSizeBeforeUpdate);
    Blog testBlog = blogs.get(blogs.size() - 1);
    assertThat(testBlog.getName()).isEqualTo(UPDATED_NAME);
    assertThat(testBlog.getHandle()).isEqualTo(UPDATED_HANDLE);
  }
예제 #2
0
  @Test
  @Transactional
  public void getBlog() throws Exception {
    // Initialize the database
    blogRepository.saveAndFlush(blog);

    // Get the blog
    restBlogMockMvc
        .perform(get("/api/blogs/{id}", blog.getId()))
        .andExpect(status().isOk())
        .andExpect(content().contentType(MediaType.APPLICATION_JSON))
        .andExpect(jsonPath("$.id").value(blog.getId().intValue()))
        .andExpect(jsonPath("$.name").value(DEFAULT_NAME.toString()))
        .andExpect(jsonPath("$.handle").value(DEFAULT_HANDLE.toString()));
  }
예제 #3
0
  @Test
  @Transactional
  public void deleteBlog() throws Exception {
    // Initialize the database
    blogRepository.saveAndFlush(blog);

    int databaseSizeBeforeDelete = blogRepository.findAll().size();

    // Get the blog
    restBlogMockMvc
        .perform(delete("/api/blogs/{id}", blog.getId()).accept(TestUtil.APPLICATION_JSON_UTF8))
        .andExpect(status().isOk());

    // Validate the database is empty
    List<Blog> blogs = blogRepository.findAll();
    assertThat(blogs).hasSize(databaseSizeBeforeDelete - 1);
  }