Search in sources :

Example 11 with Session

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

the class MissionServiceTest method setUp.

@BeforeEach
void setUp() {
    SessionResponse sessionResponse1 = sessionService.create(new SessionRequest("세션1"));
    session1 = new Session(sessionResponse1.getId(), sessionResponse1.getName());
    SessionResponse sessionResponse2 = sessionService.create(new SessionRequest("세션2"));
    session2 = new Session(sessionResponse2.getId(), sessionResponse2.getName());
    SessionResponse sessionResponse3 = sessionService.create(new SessionRequest("세션3"));
    session3 = new Session(sessionResponse3.getId(), sessionResponse3.getName());
}
Also used : SessionResponse(wooteco.prolog.session.application.dto.SessionResponse) SessionRequest(wooteco.prolog.session.application.dto.SessionRequest) Session(wooteco.prolog.session.domain.Session) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 12 with Session

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

the class PopularStudylogServiceTest 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, "피케이와 포모의 스터디로그", mission1, asList(tag1, tag2));
    this.studylog2 = new Studylog(member1, STUDYLOG2_TITLE, "피케이와 포모의 스터디로그 2", mission1, asList(tag2, tag3));
    this.studylog3 = new Studylog(member2, STUDYLOG3_TITLE, "피케이 스터디로그", mission2, asList(tag3, tag4, tag5));
    this.studylog4 = new Studylog(member2, STUDYLOG4_TITLE, "포모의 스터디로그", 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 13 with Session

use of wooteco.prolog.session.domain.Session 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 14 with Session

use of wooteco.prolog.session.domain.Session 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 15 with Session

use of wooteco.prolog.session.domain.Session 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

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