In this module, you'll use AWS CodePipeline, AWS CodeBuild, and Amazon S3 to build a Continuous Delivery pipeline to automate a code deployment workflow for the Unicorn API.
CodePipeline orchestrates the steps to build, test, and deploy your code changes. Below is a screenshot of the CodePipeline created by the CodeStar project.
CodeBuild compiles source code, runs tests, and produces software packages that are ready to deploy to environments.
The Unicorn API buildspec.yml defines the commands used to build the project and the output artifacts.
version: 0.1
phases:
build:
commands:
- cd app && npm install
- aws cloudformation package --template template.yml --s3-bucket $S3_BUCKET --output-template template-export.yml
artifacts:
type: zip
files:
- template-export.yml
The CloudFormation package command zips the local source code, uploads it to S3, and returns a new CloudFormation template that has been modified to use the S3 references as the CodeUri.
For the Unicorn API, the output artifact is a zip archive that includes only the template-export.yml
file.
Each of the following sections provide an implementation overview and detailed, step-by-step instructions. The overview should provide enough context for you to complete the implementation if you're already familiar with the AWS Management Console or you want to explore the services yourself without following a walkthrough.
If you're using the latest version of the Chrome, Firefox, or Safari web browsers the step-by-step instructions won't be visible until you expand the section.
-
Each module has corresponding source code used to seed the CodeStar CodeCommit Git repository to support the workshop. To seed the CodeCommit Git repository, click on the Launch Stack button for your region below:
Region Launch US East (N. Virginia) US West (N. California) US West (Oregon) EU (Ireland) EU (Frankfurt) Asia Pacific (Sydney) -
The CloudFormation template has been prepopulated with the necessary fields for this module. No changes are necessary
-
Select the I acknowledge that AWS CloudFormation might create IAM resources. checkbox to grant CloudFormation permission to create IAM resources on your behalf
-
Click the Create button in the lower right corner of the browser window to create the CloudFormation stack and seed the CodeCommit repository.
-
There will be a short delay as the Git repository seeded with the new source code. Upon successful completion, the CloudFormation will show Status
CREATE_COMPLETE
.
Now that the CodeCommit Git repository has been seeded with new source code, you will need to fetch the changes locally so that you may modify the code. Typically, this is accomplished using the git pull
command, however for the workshop we have replaced the repository with a new history and different Git commands will be used.
Using your preferred Git client, run the commands from your local uni-api directory:
git fetch --all
git reset --hard origin/master
Congratulations, your environment setup is complete!
Let's enhance the API with the ability to create or update a Unicorn in the Wild Rydes stables. The code to do so is already present in the project, so you need to add an AWS::Serverless::Function resource in the SAM template.yml
template.
Goal: Using the AWS::Serverless::Function
definitions in the template.yml
file as examples, add a new Serverless Function named uni-api-update to the template.yml
SAM template. The function should invoke the lambda_handler method in the app/update.js
file when triggered by an Api event to the URL path /unicorns/{name} using the HTTP put method. The function will required an environment variable, named TABLE_NAME that has a value referring to the AWS::Serverless::SimpleTable
defined in the template.
HOW TO update template.yml with uni-api-update Lambda function (expand for details)
Using a text editor, open the template.yml
file and append a new AWS::Serverless::Function Resource labeled UpdateFunction
that has the following definition.
Note: whitespace is important in YAML files. Please verify that the configuration below is added with the same space indentation as the CloudFormation Resources in the template.yml file.
-
FunctionName is
uni-api-update
-
Runtime is
nodejs6.10
-
CodeUri is
app
-
Handler is
update.lambda_handler
-
Description is
Update a Unicorn
-
Timeout is
10
-
Event type is
Api
associated to the/unicorns/{name}
Path andput
Method -
Environment variable named
TABLE_NAME
that references theTable
Resource for its value. -
Role is duplicated from another function.
If you are unsure of the syntax to add to
template.yml
please refer to the code snippet below.template.yml additions to support Update function (expand for details)
UpdateFunction: Type: 'AWS::Serverless::Function' Properties: FunctionName: 'uni-api-update' Runtime: nodejs6.10 CodeUri: app Handler: update.lambda_handler Description: Update Unicorn Timeout: 10 Events: UPDATE: Type: Api Properties: Path: /unicorns/{name} Method: put Environment: Variables: TABLE_NAME: !Ref Table Role: Fn::ImportValue: !Join ['-', [!Ref 'ProjectId', !Ref 'AWS::Region', 'LambdaTrustRole']]
Now that you've updated the the SAM template with the changes, use Git to commit the changes and push them to remote repository. This will trigger CodePipeline to build and deploy your changes in AWS.
-
Using your Git client, add the local changes to the Git index, and commit with a message. For example:
git add -u git commit -m "Add update function"
-
Using your Git client, push the Git repository updates to the origin. For example:
git push origin
Goal: After pushing your changes to your CodeCommit Git repository, use the AWS CodeStar Console to monitor and confirm that the changes are successfully built and deployed using CodePipeline.
HOW TO use the CodeStar Console to monitor CodePipeline (expand for details)
-
In the AWS Management Console choose Services then select CodeStar under Developer Tools.
-
Select the
uni-api
project -
Observe that the continuous deployment pipeline on the right of the browser window now shows the Source stage to be blue, meaning that it is active.
-
Each stage's color will turn blue during execution and green on completion. Following the successful execution of all stages, the pipeline should look like the following screenshot.
Congratulations, your changes were successfully built and deployed using CodePipeline. Next, let's validate that you're able to use the API to add a Unicorn to the Wild Rydes Stable.
After the CloudFormation deploy command completes, you will use the AWS API Gateway to test your API.
-
In the AWS Management Console, click Services then select API Gateway under Application Services.
-
In the left nav, click on
awscodestar-uni-api-lambda
. -
From the list of API resources, click on the
PUT
link under the/{name}
resource. -
On the resource details panel, click the
TEST
link in the client box on the left side of the panel. -
On the test page, enter
Shadowfox
in the Path field. -
Scroll down the test page and enter the following as the Request Body:
{ "breed": "Brown Jersey", "description": "Shadowfox joined Wild Rydes after completing a distinguished career in the military, where he toured the world in many critical missions. Shadowfox enjoys impressing his ryders with magic tricks that he learned from his previous owner." }
-
Scroll down and click the Test button.
-
Scroll to the top of the test page, and verify that on the right side of the panel that the Status code of the HTTP response is 200.
Congratulations, you have used the API to successfully add a Unicorn! Next, use the API to list the Unicorns and confirm Shadowfox is included.
-
In the AWS Management Console choose Services then select CodeStar under Developer Tools.
-
Select the
uni-api
project -
Copy the URL from the Application endpoints tile on the right side of the dashboard.
-
Paste the URL in a browser window and append
/unicorns
to the path and hit enter. For example:https://xxxxxxxxxx.execute-api.us-east-1.amazonaws.com/Prod/unicorns/
-
Confirm that the browser shows a JSON result that includes
Shadowfox
, with the breed and description entered above.
Now that we have a working API, let's consider what steps we can take to ensure that we prevent bugs from creeping into our code. As you can see, manual testing of our API has a couple of issues; we have to wait for the build process to complete and it takes a human being to go through the steps to verify the API works using the API Gateway service. It would be faster and more reliable to have an automated process that can perform this verification, and it would be even better to have these checks integrated into our build processes.
The repository you cloned in the steps above already include a set of tests that verify the functionality of our Lambda functions, so we won't need to write them from scratch. In the below steps, we will install the tools necessary to execute these tests, fix an issue that we discover has crept into our code, and take steps to ensure these issues won't crop up again in the future.
-
Change directory to your local uni-api directory, if you aren't already there.
-
Install the development tools needed to run unit tests using Node Package Manager:
npm install
-
Now that the tools have been installed, let's run our unit testing tool. Since the code for this project was written in Nodejs, we're using the Mocha test framework (https://mochajs.org/). This was already registered in our
package.json
file, so it was installed automatically in the previous step.node_modules/.bin/mocha
Our suite of tests will then run, and we will discover that there's an issue in our code! One of our Lambda functions is not returning the correct response when we attempt to read a non-exitent unicorn's data.
Let's examine the output of our test run. We see that the test expected that we would return the standard "404" error code if we attempted to read a unicorn that did not exist in the system, and instead our Lambda code returns a "500."
Goal: Correct code bug in app/read.js
, run unit tests, and verify the tests pass.
HOW TO correct code bug and verify passing unit test (expand for details)
-
Using a text editor, open
app/read.js
and navigate to the end where we construct our response. We will see that, where we specify the status code to return, we use the existence of a retured item to determine whether we return a 200 (OK) or a 500 (server error) code. -
Change the code to return a 404 (resource not found) status code instead of a 500.
-
Now that we have fixed our code, let's verify the behavior by re-running our unit testing tool:
node_modules/.bin/mocha
-
Verify that there are no errors reported by our test run.
Congratuations, you've successfully corrected the code bug! Next, let's look at how to run these tests as part of CodePipeline.
Having this testing framework in place ensures that the exact same set of steps are run every time we test our code. However, we are still running this test manually. Let's configure our CodeBuild environment to run these tests for us every time a build is performed.
-
Using a text editor, open
buildspec.yml
and navigate to thebuild:
section. -
We have discovered that our nemesis, Chet, has disabled our unit tests! Why, Chet, why?! To fix this, uncomment the line that executes the
mocha
command so our unit tests will be run during the build. -
Using your Git client, add the local changes to the Git index, commit these changes with a message, and push our local changes to the repository. For example:
git add -u git commit -m "Enabled unit tests and fixed issues" git push
-
In the AWS Management Console choose Services then select CodeStar under Developer Tools.
-
Select the
uni-api
project -
Scroll down to the "Commit history" tile and verify that you see the commit message that you entered above, for example "Enabled unit tests and fixed issues".
-
Monitor the "Continuous Deployment" pipeline to ensure that the most recent execution of the Build step took place after you committed the code in the steps above. If you have just committed your changes it may take a few minutes for your changes to be detected and executed.
-
Once the Build step has completed, click the
CodeBuild
link inside the step to view the CodeBuild project and build history. -
Scroll down to the "Build History" section, and click the entry for the most recent build to view the details of the build.
-
Scroll down to the Build logs section, and inspect the build log, looking for a section that begins with
Running command mocha
and reports the results of the test pass (should be5 passing
).
Congratulations, you have successfully integrated unit tests into your continuous delivery process!
You have successfully used a Continuous Delivery Pipeline using CodePipeline to automate the deployment of the Unicorn API. In the next X-Ray Module, you will integrate AWS X-Ray to demonstrate how to troubleshoot the Unicorn API.