Skip to content

Instantly share code, notes, and snippets.

@dehidehidehi
dehidehidehi / main.yml
Created January 11, 2023 23:28
Github workflow: execute Maven tests with pom.xml cached-dependencies (.github/workflows/main.yml)
name: 'Test PRs'
on:
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
test:
runs-on: ubuntu-latest
steps:
@dehidehidehi
dehidehidehi / SpringQualifiedBeanConstructorParameterTest.java
Created January 10, 2023 12:07
Assert that the correct @qualified spring bean is being injected into a `constructor`.
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;
@dehidehidehi
dehidehidehi / EmptyLinkedHashMapCollector.java
Created December 5, 2022 18:51
Custom collector for a LinkedHashMap with values all set to Optional empty.
/**
* 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);
}
@dehidehidehi
dehidehidehi / ModuleInfoTest.java
Created December 4, 2022 15:42
Boilerplate for asserting the contents of a module-info.java class.
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;
@dehidehidehi
dehidehidehi / ReplaceCapitalizedCamelCase.java
Last active February 16, 2023 14:56
JUnit5 Auto DisplayName Generator: Capitalized Camel Case tests
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 {
@dehidehidehi
dehidehidehi / patchEnvProvider.sh
Last active August 23, 2022 23:11
Python patch-env bash script which cleans .env files from comments and blank lines and allows multiple .env files to be passed as arguments
#!/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
@dehidehidehi
dehidehidehi / application.properties
Created August 9, 2022 21:42
Java logging - Spring boot better logback formatting
# 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
@dehidehidehi
dehidehidehi / IntegrationTest.java
Created August 2, 2022 16:39
@IntegrationTEST - Short hand annotation for Spring for basic usage
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.
@dehidehidehi
dehidehidehi / EntityMapper.java
Created July 28, 2022 09:17
Contract for a generic dto to entity mapper from JHipster.
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.
@dehidehidehi
dehidehidehi / RetrofitHttpClientProvider.java
Last active July 28, 2022 09:12
Boilerplate code to generate a general usage Retrofit2 http model client
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;