Skip to content

[ETCM-102] Fast sync integration tests #672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Sep 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
b4d1c71
[ETCM-102] Add integration tests to fast sync
KonradStaniec Sep 15, 2020
1238df4
[ETCM-102] Add integration tests to fast sync
KonradStaniec Sep 15, 2020
72da7a3
[ETCM-102] Fix bugs found during integration testing
KonradStaniec Sep 16, 2020
4dfbbc0
Merge remote-tracking branch 'origin/develop' into etcm-102/fast-sync…
KonradStaniec Sep 16, 2020
347c4ed
Merge remote-tracking branch 'origin/develop' into etcm-102/fast-sync…
KonradStaniec Sep 16, 2020
fae8700
[ETCM-102] Pr comments
KonradStaniec Sep 16, 2020
6ba4c8c
[ETCM-102] Custom constructors for PeerInfo. Rename things in tests
KonradStaniec Sep 17, 2020
ac085b9
Merge remote-tracking branch 'origin/develop' into etcm-102/fast-sync…
KonradStaniec Sep 18, 2020
e2044c1
[ETCM-102] Fix typo. Clear up it tests
KonradStaniec Sep 18, 2020
851b9fc
Merge remote-tracking branch 'origin/develop' into etcm-102/fast-sync…
KonradStaniec Sep 18, 2020
bcfc6e5
Merge remote-tracking branch 'origin/develop' into etcm-102/fast-sync…
KonradStaniec Sep 18, 2020
030870a
Merge remote-tracking branch 'origin/develop' into etcm-102/fast-sync…
KonradStaniec Sep 19, 2020
cd44ef1
[ETCM-102] Fix race condition in frame encoder/decoder
KonradStaniec Sep 21, 2020
76dedc0
[ETCM-102] Break connection in case of decoding failure
KonradStaniec Sep 21, 2020
d2fd3f6
Merge remote-tracking branch 'origin/develop' into etcm-102/fast-sync…
KonradStaniec Sep 21, 2020
5665378
[ETCM-102] Fix conflicts after merge with develop
KonradStaniec Sep 21, 2020
6a35748
Merge remote-tracking branch 'origin/develop' into etcm-102/fast-sync…
KonradStaniec Sep 22, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions src/it/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<configuration>

<property name="stdoutEncoderPattern" value="%d{HH:mm:ss} [%logger{36}] - %msg%n" />
<property name="fileEncoderPattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} %X{akkaSource} - %msg%n" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>${stdoutEncoderPattern}</pattern>
</encoder>
</appender>

<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${user.home}/.mantis/logs/mantis.log</file>
<append>true</append>
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
<fileNamePattern>${user.home}/.mantis/logs/mantis.%i.log.zip</fileNamePattern>
<minIndex>1</minIndex>
<maxIndex>10</maxIndex>
</rollingPolicy>
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
<maxFileSize>10MB</maxFileSize>
</triggeringPolicy>
<encoder>
<pattern>${fileEncoderPattern}</pattern>
</encoder>
</appender>

<root level="INFO">
<appender-ref ref="STDOUT" />
<appender-ref ref="FILE" />
</root>
</configuration>
Loading