Skip to content

Latest commit

 

History

History
65 lines (49 loc) · 2.19 KB

README.md

File metadata and controls

65 lines (49 loc) · 2.19 KB

This is Sample Git Repository to Validate the Git Pushes to Remote Instance calls with the updates. Hopefully, You will learn the integrations though this.

Pre-requistes:

Make sure Python (with requests module) is installed
Configure the SNOW_URL, SNOW_USER_NAME, SNOW_USER_PASS
If you do not want the diff to be included, Set the INCLUDE_DIFF to False

For Testing we will looking into the one of the commits:

commit a2b1adeca4b1d908cd0a9517e4dc39dc73c7b324
Author: tarun.murala <[email protected]>
Date:   Wed Nov 8 15:24:48 2017 -0800
    STRY0010015: Commit2

Prior commit

commit ba398801e018f5e1be53a3a1d3533a04f3a0c56f
Author: tarun.murala <[email protected]>
Date:   Wed Nov 8 15:21:40 2017 -0800
    STRY0010015: First Commit

The Post Recieve Hook reads the "Commit2" performs the following:

  1. Gets the Commit Details
  2. Gets the branch on which the commit was made
  3. Get the diff from the previous commit
  4. Prepare the JSON with the list of Added, Updated, Renamed or Removed files.
  5. Invokes the Instance with Commit message (Assuming the instance details are configured)

The Sample JSON generated as below:

{
  "commit_id": "a2b1adeca4b1d908cd0a9517e4dc39dc73c7b324",
  "committer": "'[email protected]'",
  "branch": "refs/heads/master",
  "added_files": [
    {
      "file_name": "second.js",
      "diff": "@@ -0,0 +1,3 @@\n+function second (message) {\n+    console.log('Hello' + message);\n+}\n\\ No newline at end of file"
    }
  ],
  "deleted_files": [],
  "repo_url": "https://[email protected]/testsnuser/test.git",
  "renamed_files": [],
  "updated_files": [
    {
      "file_name": "first.js",
      "diff": "@@ -1,3 +1,6 @@\n function first (name) {\n     console.log('Hi ' + name);\n+}\n+function first_udpated (name) {\n+    console.log('Hello ' + name);\n }\n\\ No newline at end of file"
    }
  ],
  "message": "STRY0010015: Commit2",
  "source_versioning": "GIT"
}

Sample run can made like:

call_snow_instance('ba398801e018f5e1be53a3a1d3533a04f3a0c56f', 'a2b1adeca4b1d908cd0a9517e4dc39dc73c7b324')

Thanks, Tarun