Search in sources :

Example 16 with Mission

use of wooteco.prolog.session.domain.Mission in project prolog by woowacourse.

the class StudylogServiceTest method setUp.

@BeforeEach
void setUp() {
    SessionResponse sessionResponse1 = sessionService.create(new SessionRequest("세션1"));
    SessionResponse sessionResponse2 = sessionService.create(new SessionRequest("세션2"));
    this.session1 = new Session(sessionResponse1.getId(), sessionResponse1.getName());
    this.session2 = new Session(sessionResponse2.getId(), sessionResponse2.getName());
    MissionResponse missionResponse1 = missionService.create(new MissionRequest("자동차 미션", session1.getId()));
    MissionResponse missionResponse2 = missionService.create(new MissionRequest("수동차 미션", session2.getId()));
    this.mission1 = new Mission(missionResponse1.getId(), missionResponse1.getName(), session1);
    this.mission2 = new Mission(missionResponse2.getId(), missionResponse2.getName(), session1);
    this.member1 = memberService.findOrCreateMember(new GithubProfileResponse("이름1", "별명1", "1", "image"));
    this.member2 = memberService.findOrCreateMember(new GithubProfileResponse("이름2", "별명2", "2", "image"));
    this.loginMember1 = new LoginMember(member1.getId(), Authority.MEMBER);
    this.loginMember2 = new LoginMember(member2.getId(), Authority.MEMBER);
    this.loginMember3 = new LoginMember(null, Authority.ANONYMOUS);
    this.studylog1 = new Studylog(member1, STUDYLOG1_TITLE, "피케이와 포모의 스터디로그", session1, mission1, asList(tag1, tag2));
    this.studylog2 = new Studylog(member1, STUDYLOG2_TITLE, "피케이와 포모의 스터디로그 2", session1, mission1, asList(tag2, tag3));
    this.studylog3 = new Studylog(member2, STUDYLOG3_TITLE, "피케이 스터디로그", session1, mission2, asList(tag3, tag4, tag5));
    this.studylog4 = new Studylog(member2, STUDYLOG4_TITLE, "포모의 스터디로그", session1, mission2, emptyList());
}
Also used : MissionRequest(wooteco.prolog.session.application.dto.MissionRequest) GithubProfileResponse(wooteco.prolog.login.application.dto.GithubProfileResponse) MissionResponse(wooteco.prolog.session.application.dto.MissionResponse) LoginMember(wooteco.prolog.login.ui.LoginMember) Mission(wooteco.prolog.session.domain.Mission) SessionResponse(wooteco.prolog.session.application.dto.SessionResponse) SessionRequest(wooteco.prolog.session.application.dto.SessionRequest) Studylog(wooteco.prolog.studylog.domain.Studylog) Session(wooteco.prolog.session.domain.Session) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 17 with Mission

use of wooteco.prolog.session.domain.Mission in project prolog by woowacourse.

the class StudylogReadRepositoryTest method setUp.

@BeforeEach
void setUp() {
    member = memberRepository.save(웨지);
    bada = memberRepository.save(바다);
    Session session = sessionRepository.save(new Session("세션1"));
    Mission mission = missionRepository.save(new Mission("미션", session));
    studylog = studylogRepository.save(new Studylog(member, "제목", "내용", mission, Lists.emptyList()));
}
Also used : Mission(wooteco.prolog.session.domain.Mission) Studylog(wooteco.prolog.studylog.domain.Studylog) Session(wooteco.prolog.session.domain.Session) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 18 with Mission

use of wooteco.prolog.session.domain.Mission in project prolog by woowacourse.

the class StudylogTagRepositoryTest method createStudylogTag.

@DisplayName("StudylogTag 생성")
@Test
void createStudylogTag() {
    // given
    Member member = memberRepository.save(웨지);
    Session session = sessionRepository.save(new Session("세션1"));
    Mission mission = missionRepository.save(new Mission("미션", session));
    Tag tag = tagRepository.save(new Tag("태그"));
    Studylog studylog = studylogRepository.save(new Studylog(member, "제목", "내용", mission, Lists.emptyList()));
    // when
    StudylogTag studylogTag = new StudylogTag(studylog, tag);
    StudylogTag savedStudylogTag = studylogTagRepository.save(studylogTag);
    // then
    assertThat(savedStudylogTag.getId()).isNotNull();
    assertThat(savedStudylogTag).usingRecursiveComparison().ignoringFields("id", "createdAt", "updatedAt").isEqualTo(studylogTag);
}
Also used : Mission(wooteco.prolog.session.domain.Mission) Tag(wooteco.prolog.studylog.domain.Tag) StudylogTag(wooteco.prolog.studylog.domain.StudylogTag) StudylogTag(wooteco.prolog.studylog.domain.StudylogTag) Member(wooteco.prolog.member.domain.Member) Studylog(wooteco.prolog.studylog.domain.Studylog) Session(wooteco.prolog.session.domain.Session) Test(org.junit.jupiter.api.Test) RepositoryTest(wooteco.support.utils.RepositoryTest) DisplayName(org.junit.jupiter.api.DisplayName)

Aggregations

Mission (wooteco.prolog.session.domain.Mission)18 Session (wooteco.prolog.session.domain.Session)12 Studylog (wooteco.prolog.studylog.domain.Studylog)11 DisplayName (org.junit.jupiter.api.DisplayName)9 Test (org.junit.jupiter.api.Test)9 Member (wooteco.prolog.member.domain.Member)8 RepositoryTest (wooteco.support.utils.RepositoryTest)6 Transactional (org.springframework.transaction.annotation.Transactional)5 LoginMember (wooteco.prolog.login.ui.LoginMember)5 BeforeEach (org.junit.jupiter.api.BeforeEach)4 MissionRequest (wooteco.prolog.session.application.dto.MissionRequest)4 MissionResponse (wooteco.prolog.session.application.dto.MissionResponse)4 StudylogTag (wooteco.prolog.studylog.domain.StudylogTag)4 Tag (wooteco.prolog.studylog.domain.Tag)4 Tags (wooteco.prolog.studylog.domain.Tags)3 GithubProfileResponse (wooteco.prolog.login.application.dto.GithubProfileResponse)2 SessionRequest (wooteco.prolog.session.application.dto.SessionRequest)2 SessionResponse (wooteco.prolog.session.application.dto.SessionResponse)2 StudylogNotFoundException (wooteco.prolog.studylog.exception.StudylogNotFoundException)2 IntegrationTest (wooteco.support.utils.IntegrationTest)2