Skip to content

Commit 1c6321a

Browse files
authored
Merge pull request #1 from rgaleanog/master
update branch from orginal repo
2 parents 16bd4bc + 25548a6 commit 1c6321a

14 files changed

+318
-172
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Directorios a tener en cuenta:
6565
## Configuración
6666

6767
```bash
68-
npm install -g serverless
68+
npm install -g serverless@1.75
6969
```
7070
**Importante:** revisar la guía para instalar la correcta versión de serverless para evitar fallos con el login de Serverless Framework
7171
## Despliegue con Serverless Framework
@@ -242,4 +242,4 @@ Esto se puede hacer a través de los ajustes en el `serverless.yml`.
242242
WriteCapacityUnits: 1
243243
```
244244
245-
En caso de que esperes mucha fluctuación de tráfico, te recomendamos que consultes esta guía sobre cómo escalar automáticamente el DynamoDB [https://aws.amazon.com/blogs/aws/auto-scale-dynamodb-with-dynamic-dynamodb/](https://aws.amazon.com/blogs/aws/auto-scale-dynamodb-with-dynamic-dynamodb/)
245+
En caso de que esperes mucha fluctuación de tráfico, te recomendamos que consultes esta guía sobre cómo escalar automáticamente el DynamoDB [https://aws.amazon.com/blogs/aws/auto-scale-dynamodb-with-dynamic-dynamodb/](https://aws.amazon.com/blogs/aws/auto-scale-dynamodb-with-dynamic-dynamodb/)

pipeline/PIPELINE-FULL-STAGING/Jenkinsfile

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,25 @@ pipeline {
2121
}
2222
stage('Test'){
2323
steps{
24-
dir("todo-list-serverless/test") {
24+
dir("todo-list-aws/test") {
2525
// Static program analysis -> radon
2626
echo 'Make some cool static program analysis wich radon. IIs the code enought simple to understand?'
2727
}
2828
}
2929
steps{
30-
dir("todo-list-serverless/test") {
30+
dir("todo-list-aws/test") {
3131
// Quality program analysis -> flake8
3232
echo 'echo My code has enought quality?'
3333
}
3434
}
3535
steps{
36-
dir("todo-list-serverless/test") {
36+
dir("todo-list-aws/test") {
3737
// Security programa analysis -> bandit
3838
echo 'Make some security analysis of the code. Is the code secure?'
3939
}
4040
}
4141
steps{
42-
dir("todo-list-serverless/test") {
42+
dir("todo-list-aws/test") {
4343
// Unitary testing -> unittest or pytest
4444
sh ''
4545
// Coverage report -> coverage
@@ -49,7 +49,7 @@ pipeline {
4949
}
5050
stage('Build') {
5151
steps {
52-
dir("todo-list-serverless") {
52+
dir("todo-list-aws") {
5353
// Build release
5454
echo 'Maybe something like sam build?'
5555
sh "sam build ..."
@@ -60,7 +60,7 @@ pipeline {
6060
}
6161
stage('Integration Test on local') {
6262
steps{
63-
dir("todo-list-serverless/test") {
63+
dir("todo-list-aws/test") {
6464
// Unittest or pytest
6565
// Integration test over local -> unittest or pytest against the lambda functions.
6666
echo 'test all methods works fine. Maybe with sam-local and aws dynamodb official docker image'
@@ -69,15 +69,15 @@ pipeline {
6969
}
7070
stage('Deploy'){
7171
steps{
72-
dir("todo-list-serverless") {
72+
dir("todo-list-aws") {
7373
// Deploy architecture
7474
sh "yes | sam deploy --template-file packaged.yaml --stack-name ${env.STACK_NAME} --parameter-overrides Environment=${env.ENVIRONMENT}"
7575
}
7676
}
7777
}
7878
stage('Integration Test after deploy'){
7979
steps{
80-
dir("todo-list-serverless") {
80+
dir("todo-list-aws") {
8181
// Unittest or pytest
8282
// Unitary testing -> unittest or pytest against the lambda functions.
8383
echo 'test all methods works fine'

serverless.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
app: api-python
21
service: serverless-rest-api-with-dynamodb
32

4-
frameworkVersion: ">=1.1.0 <2.0.0"
3+
frameworkVersion: ">=1.1.0"
54

65
provider:
76
name: aws

terraform/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# t3.micro node with an AWS Tag naming it "HelloWorld"
33
provider "aws" {
44
region = "us-east-1"
5-
profile = "unir"
5+
profile = "default"
66
}
77

88

@@ -167,4 +167,4 @@ resource "null_resource" "create_pem" {
167167
}
168168

169169
depends_on = [null_resource.super_secret]
170-
}
170+
}

terraform/outputs.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ output "s3_bucket_production" {
77
}
88

99
output "s3_bucket_staging" {
10-
value = aws_s3_bucket.s3_bucket_production.id
10+
value = aws_s3_bucket.s3_bucket_staging.id
1111
}
1212

1313
output "jenkins_instance_id" {
@@ -26,4 +26,4 @@ output "jenkins_url" {
2626

2727
output "public_ip" {
2828
value = aws_instance.jenkins.public_ip
29-
}
29+
}

test/README.md

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Pruebas unitarias en ficheros independientes de los métodos de acceso a la base de datos.
2+
3+
En este directorio se disponibilizan una serie de métodos de acceso a la base de datos de DynamoDB de manera independiente y unas pruebas unitarias asociadas.
4+
Dichas pruebas unitarias ejecutan contra la librería moto y contra una imagen de docker de DynamoDB levantada en un contexto local.
5+
6+
Para poder llevarlas a cabo se han de cumplir los siguientes requisitos:
7+
* Librerías
8+
* Python3.7
9+
* moto
10+
* boto3
11+
* Imagen de Docker
12+
* DynamoDB oficial de AWS.
13+
14+
15+
16+
17+
Pasos para ejecutar DynamoDB en local
18+
```
19+
docker run -p 8000:8000 amazon/dynamodb-local
20+
```
21+
Pasos para ejecutar las pruebas
22+
```
23+
test$ coverage run -m TestToDo
24+
One or more parameter values are not valid. The AttributeValue for a key attribute cannot contain an empty string value. Key: id
25+
One or more parameter values were invalid: An AttributeValue may not contain an empty string
26+
One or more parameter values were invalid: An AttributeValue may not contain an empty string
27+
One or more parameter values were invalid: An AttributeValue may not contain an empty string
28+
....One or more parameter values are not valid. The AttributeValue for a key attribute cannot contain an empty string value. Key: id
29+
One or more parameter values were invalid: An AttributeValue may not contain an empty string
30+
One or more parameter values were invalid: An AttributeValue may not contain an empty string
31+
.
32+
----------------------------------------------------------------------
33+
Ran 11 tests in 1.947s
34+
35+
OK
36+
37+
test$ coverage report -m
38+
Name Stmts Miss Cover Missing
39+
--------------------------------------------------
40+
TestToDo.py 108 0 100%
41+
ToDoCreateTable.py 11 2 82% 32, 38
42+
ToDoDeleteItem.py 17 1 94% 32
43+
ToDoGetItem.py 17 3 82% 18-19, 31
44+
ToDoListItems.py 17 6 65% 16-17, 23-25, 29
45+
ToDoPutItem.py 19 1 95% 38
46+
ToDoUpdateItem.py 19 1 95% 48
47+
--------------------------------------------------
48+
TOTAL 208 14 93%
49+
```
50+
51+
# TODO
52+
El alumno deberá de incluir en este directorio un nuevo fichero de pruebas unitarias para la clase que se especifica desarrollar, usando como base las funciones python aquí desarrolladas y las pruebas que se ofrecen a modo de ejemplo. El esqueleto de la clase se encuentra disponible en [todos/todoTable.py](../todos/todoTable.py)
53+
54+
El fichero de pruebas se denominará:
55+
```
56+
TestToDoClass.py
57+
```

0 commit comments

Comments
 (0)