This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Test PRs' | |
on: | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.fasterxml.jackson.databind.ObjectMapper; | |
import org.junit.jupiter.api.Assertions; | |
import org.junit.jupiter.api.Test; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.beans.factory.annotation.Qualifier; | |
import org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTest; | |
import org.springframework.boot.test.context.SpringBootTest; | |
import org.springframework.context.annotation.ComponentScan; | |
import org.springframework.data.mongodb.core.MongoTemplate; | |
import org.springframework.test.context.ActiveProfiles; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Custom collector for a {@link LinkedHashMap} with values all set to {@link Optional#empty()} | |
*/ | |
private <T, R> Collector<T, ?, LinkedHashMap<T, Optional<R>>> toEmptyLinkedHashMap() { | |
return Collectors.toMap(Function.identity(), f -> Optional.empty(), (x, y) -> y, LinkedHashMap::new); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.junit.jupiter.api.BeforeEach; | |
import org.junit.jupiter.api.Test; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.lang.module.ModuleDescriptor; | |
import java.lang.module.ModuleDescriptor.Exports; | |
import java.lang.module.ModuleDescriptor.Requires; | |
import java.nio.file.Path; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.junit.jupiter.api.DisplayNameGenerator; | |
import java.lang.reflect.Method; | |
/** | |
* Classe permettant à jUnit d'automatiquement transformer les noms de classes en phrases lors de l'exécution des tests.<br> | |
* Permet une meilleure lisibilité. | |
*/ | |
public class ReplaceCapitalizedCamelCase extends DisplayNameGenerator.Standard { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Documentation here : | |
# https://gist.github.com/dehidehidehi/6c92f618e4d841e6cc8b2dce8a3b0b7d | |
# Here's a bash script which would allow to easily concatenate the contents of multiple .env files. | |
# Just save this script and pass the .env file path (relative or absolute) as arguments. | |
ENV_VARS_LIST="" | |
for envFile in $@ | |
do | |
grep -Ev '(#|^$)' $envFile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Credit: https://twitter.com/bsideup/status/1557116232146554882 | |
# (no date, single-character level, no threads, no pid) | |
logging.pattern.console=\ | |
%black(%d{HH:mm:ss.SSS}) \ | |
%highlight(%.-1level) \ | |
%cyan(%40.40logger{39}): \ | |
%msh%n%throwable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.springframework.boot.test.context.SpringBootTest; | |
import org.springframework.test.annotation.DirtiesContext; | |
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.lang.annotation.Target; | |
/** | |
* Base composite annotation for integration tests. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.List; | |
import org.mapstruct.BeanMapping; | |
import org.mapstruct.MappingTarget; | |
import org.mapstruct.Named; | |
import org.mapstruct.NullValuePropertyMappingStrategy; | |
/** | |
* Contract for a generic dto to entity mapper. | |
* | |
* @param <D> - DTO type parameter. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import lombok.Getter; | |
import lombok.Setter; | |
import lombok.extern.slf4j.Slf4j; | |
import okhttp3.OkHttpClient; | |
import retrofit2.Retrofit; | |
import retrofit2.converter.jackson.JacksonConverterFactory; | |
import java.net.Authenticator; | |
import java.net.InetSocketAddress; | |
import java.net.PasswordAuthentication; |