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
package br.com.zup.edu.nossocartao.propostas.cards.jobs; | |
import br.com.zup.edu.nossocartao.propostas.cards.CardRepository; | |
import br.com.zup.edu.nossocartao.propostas.cards.integration.CardsClient; | |
import br.com.zup.edu.nossocartao.propostas.cards.integration.FindCardByProposalIdResponse; | |
import br.com.zup.edu.nossocartao.propostas.cards.model.Card; | |
import br.com.zup.edu.nossocartao.propostas.proposals.ProposalRepository; | |
import br.com.zup.edu.nossocartao.propostas.proposals.model.Proposal; | |
import br.com.zup.edu.nossocartao.propostas.proposals.model.ProposalStatus; | |
import org.springframework.beans.factory.annotation.Autowired; |
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
package br.com.zup.edu.pix | |
import java.lang.IllegalStateException | |
/** | |
* Representa todas as instituições financeiras passíveis de trabalhar com Pix | |
* https://www.bcb.gov.br/pom/spb/estatistica/port/ASTR003.pdf (line 229 - 60701190 ITAÚ UNIBANCO S.A) | |
*/ | |
class Instituicoes { |
Para escrever os testes de integração dos endpoints gRPC eu tive basicamente que levantar o contexto do Micronaut (com @MicronautTest
) juntamente com um banco H2 em vez do PostgreSQL pois meu schema é MUITO simples e não valeria o custo de levantar um PostgreSQL via TestContainers. Por haver muita integração com os serviços satélites ITAU-ERP e BCB, eu mockei ambos.
No fim, eu segui duas abordagem na hora de escrever os cenários de testes:
- Para o endpoint
RegistraChaveEndpoint
, eu adentrei sua classe Service para extrair os cenários de testes, ou seja, todos os cenários foram concebidos a partir das classes de Endpoint + Service. No fim, escrevi uma única classe com todos os testes: [RegistraChaveEndpointTest
](https://github.com/zup-academy/orange-stack-pix-keymanager-grpc/blob/master/src/test/kotlin/br/com/zup/edu/pix/registra/RegistraChaveEndpoin
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
// Bean Validations = spec = PDF -> Hibernate-Validator -> JAR | |
@Intropected | |
data class ProdutoRequest( | |
@field:NotNull val codigo: Int, // obrigatorio | |
@field:NotBlank @field:Size(max=42) val nome: String // obrigatorio e tamanho maximo de 42 | |
) | |
- Integrantes: Yuri Matheus e Rafael Ponte (eu)
- treinamento com 4 modulos
- Divisao dos modulos para 1a sprint
- 2 primeiros modulos para o release do treinamento
- Yuri ficou com modulo de JVM
- Rafael ficou com modulo de Persistencia
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
var auth_username = pm.variables.get("auth_username") | |
var auth_password = pm.variables.get("auth_password") | |
var client_id = pm.variables.get("client_id") | |
var client_secret = pm.variables.get("client_secret") | |
var authBody = `username=${auth_username}&password=${auth_password}&grant_type=password&client_id=${client_id}&client_secret=${client_secret}`; | |
console.log(authBody) | |
var force_refresh = true | |
var token_expires_in = pm.environment.get("token_expires_in"); | |
var token_created = pm.environment.get("token_created"); |
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
hooks: | |
- type: edit-xml | |
trigger: after-render | |
path: pom.xml | |
encoding: UTF-8 | |
namespaces: | |
- name: ns | |
value: "http://maven.apache.org/POM/4.0.0" | |
- name: xsi | |
value: "http://www.w3.org/2001/XMLSchema-instance" |
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.slf4j.LoggerFactory | |
import org.springframework.jdbc.core.JdbcTemplate | |
import org.springframework.stereotype.Component | |
import org.springframework.transaction.annotation.Propagation | |
import org.springframework.transaction.annotation.Transactional | |
import java.time.Duration | |
interface LockManager { | |
fun <T> tryWithLock(key: Long, timeout: Duration, function: () -> T): T | |
} |
OlderNewer