Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add functions and tests #216

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions Lesson5/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__pycache__/
27 changes: 27 additions & 0 deletions Lesson5/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
node('master') {
stage("Fetch Source Code") {
cleanWs()
git ([url: 'https://github.com/bstephgit/jenkins', branch: 'add-functions-and-tests'])
}

dir('Lesson5') {
printMessage('Running Pipeline')
stage("Testing") {
sh 'ls -la'
sh 'python3 test_functions.py'
}
stage("Deployment") {
if (env.BRANCH_NAME == 'master') {
printMessage('Deploying the master branch')
} else {
printMessage("No deployment for branch [${env.BRANCH_NAME}]")
}

}
printMessage('Pipeline Complete')
}
}

def printMessage(message) {
echo "${message}"
}
35 changes: 35 additions & 0 deletions Lesson5/functions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
def add_two_values(value1, value2):
""" Adds two integers

Arguments:
value1: first integer value e.g. 10
value2: second integer value e.g. 2
"""
return value1 + value2

def add_multiple_values(*args):
""" Adds a list of integers

Arguments:
args: A list of integers e.g. 1,2,3,4,5
"""
sum_ = 0
for number in args:
sum_ = sum_ + number

return sum_

def get_full_name(firstname, lastname):
""" Return the full name in the format firstname, lastname

Arguments:
firstname: First name e.g. John
lastname: Last name e.g. Doe
"""
return lastname + ", " + firstname

def main():
add_multiple_values(1,2,3,4,5)

if __name__ == '__main__':
main()
23 changes: 23 additions & 0 deletions Lesson5/test_functions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import unittest

from functions import *


class TestFunctions(unittest.TestCase):
""" Test add_values
"""
def setUp(self):
self.value1 = 10
self.value2 = 20

def test_add_values(self):
self.assertEqual(30, add_two_values(self.value1, self.value2))

def test_add_values_two(self):
self.assertEqual(15, add_multiple_values(1,2,3,4,5))

def test_full_name(self):
self.assertEqual("Doe, John", get_full_name("John", "Doe"))

if __name__ == '__main__':
unittest.main()
Empty file removed NewUser.txt
Empty file.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# travis-broken-example

An example that will cause a build failure
# Jenkins tutorial
repository for jenkins tutorial
10 changes: 0 additions & 10 deletions Test.php

This file was deleted.