JUNIT - исключение нулевого указателя при вызове findAll весной. Данные JPA - PullRequest
0 голосов
/ 03 декабря 2018

Я новичок в Junits и Mockito, я пишу класс модульного теста, чтобы проверить мой класс обслуживания CourseService.java, который вызывает findAll() метод CourseRepository.class, который реализует CrudRepository<Topics,Long>

Класс обслуживания

@Service
public class CourseService {

    @Autowired
    CourseRepository courseRepository;

    public void setCourseRepository(CourseRepository courseRepository) {
        this.courseRepository = courseRepository;
    }

    public Boolean getAllTopics() {

        ArrayList<Topics> topicList=(ArrayList<Topics>) courseRepository.findAll();
        if(topicList.isEmpty())
        {
            return false;
        }
        return true;
    }
}

Класс репозитория

public interface CourseRepository extends CrudRepository<Topics,Long>{

}

Класс домена

@Entity
@Table(name="Book")
public class Topics {

    @Id
    @Column(name="Topicid")
    private long topicId;

    @Column(name="Topictitle",nullable=false)
    private String topicTitle;

    @Column(name="Topicauthor",nullable=false)
    private String topicAuthor;

    public long getTopicId() {
        return topicId;
    }
    public void setTopicId(long topicId) {
        this.topicId = topicId;
    }

    public String getTopicTitle() {
        return topicTitle;
    }
    public void setTopicTitle(String topicTitle) {
        this.topicTitle = topicTitle;
    }
    public String getTopicAuthor() {
        return topicAuthor;
    }
    public void setTopicAuthor(String topicAuthor) {
        this.topicAuthor = topicAuthor;
    }
    public Topics(long topicId, String topicTitle, String topicAuthor) {
        super();
        this.topicId = topicId;
        this.topicTitle = topicTitle;
        this.topicAuthor = topicAuthor;
    }
}

Ниже приведен класс Junit, который я написал, но courseRepository инициализируется значением NULL и, следовательно, я получаю NullPointerException.

public class CourseServiceTest {

    @Mock
    private CourseRepository courseRepository;

    @InjectMocks
    private CourseService courseService;

    Topics topics;

    @Mock
    private Iterable<Topics> topicsList;

    @Before
    public void setUp() {
        MockitoAnnotations.initMocks(CourseServiceTest.class);
    }
    @Test
    public void test_Get_Topic_Details() {

        List<Topics> topics = new ArrayList<Topics>();
        Mockito.when(courseRepository.findAll()).thenReturn(topics);
        boolean result=courseService.getAllTopics();
        assertTrue(result);
    }
}

Ответы [ 2 ]

0 голосов
/ 03 декабря 2018

Вероятно, вы имеете дело с некоторой проблемой во фреймворке, чтобы заставить импровизированный класс быть введенным фреймворком.

Я рекомендую использовать Конструктор Инъекции , поэтому вам не нужно полагаться на отражение и @Inject / @Mock аннотации, чтобы сделать эту работу:

@Service
public class CourseService {

    private final CourseRepository courseRepository;

    // @Autowired annotation is optional when using constructor injection
    CourseService (CourseRepository courseRepository) {
        this.courseRepository = courseRepository;
    }

    // .... code

}

Тест:

@Test
public void test_Get_Topic_Details() {

    List<Topics> topics = new ArrayList<Topics>();
    Mockito.when(courseRepository.findAll()).thenReturn(topics);

    CourseService courseService = new CourseService(courseRepository);
    boolean result = courseService.getAllTopics();
    assertTrue(result);
}
0 голосов
/ 03 декабря 2018

Измените метод setUp() на:

@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
}
...