Git for Testers and Trackers

From Joomla! Documentation

Revision as of 18:52, 1 June 2013 by Wilsonge (talk | contribs) (added Category:GitHub using HotCat)

The following tasks are the typical ones needed for the Testing and Tracker teams.

  1. Set up local Git repository (read only from trunk).
  2. Keep local repository updated with changes from trunk.
  3. Apply patches and pull requests.
    1. Option with branches.
    2. Option without branches.
  4. Reset files to unmodified state.
  5. Work with older versions.

Testing and Tracker Teams Work Flow[edit]

People who want to test Pending issues need to do the following. These same tasks apply to people who want to monitor the tracker and confirm Open issues.

  1. Create a local working copy of the Joomla trunk.
  2. Update this local copy with changes made to trunk.
  3. Apply proposed patches (from Confirmed issues) to trunk to see if they work correctly.
  4. Be able to restore the local copy to its unmodified state.

Testers may or may not wish to use Git branches in their testing work. For simple testing of one issue at a time, creating local branches is not necessary. For more complex testing or for testing multiple issues at a time, it is more convenient to create a local branch for each issue. Both approaches are documented here.

In some cases, it is important to identify when a bug or issue was first introduced. With Git it is easy to restore the local repository to a prior state (for example, to a point in time in the past) and test whether the issue was present in that version. This process is also documented here.

Create Local Read-Only Repository[edit]

Testers do not need to create a remote repository on Github. They can simply create a local clone of the CMS trunk on their local test machine. This clone will allow them to easily keep up with changes made to the CMS trunk.

The steps for this process are shown below, first using the command-line-interface (CLI) for Git and then using Eclipse and eGit.

CLI Commands[edit]

  1. Navigate to your project root folder (for example, c:\xampp\htdocs\joomla-cms):
  2. Enter command: git clone git://github.com/joomla/joomla-cms.git. The system will work for a few minutes, copying the entire remote repository to your local system. When you are done, you will have a local copy of the Joomla CMS repository in the current directory, along with a git repository (in the .git subdirectory). Note that this URL points to the joomla-cms project on Github. This project becomes the remote origin for the local git repository. For example, the command git remote -v will now list origin as follows:
git remote -v
origin git://github.com/joomla/joomla-cms.git (fetch)
origin git://github.com/joomla/joomla-cms.git (push)

Eclipse Commands:[edit]

  1. Clone joomla-cms repository using the read-only URL. In Repositories View, click the button "Clone a Git Repository and add to this View". This screen will show the following.
    Git-document-screenshot-20120529-02.png
  2. Select URI and click Next. The screen below will show.
    Git-document-screenshot-20120529-03.png
  3. Enter the URI git://github.com/joomla/joomla-cms.git as shown above. Then click Next to see the screen below.
    Git-document-screenshot-20120529-04.png
  4. This will default to select all branches. Keep this default and click Next to show the screen below.
    Git-document-screenshot-20120529-05.png
  5. Click on Browse and browse to the desired root directory for the project (for example, c:\xampp\htdocs\joomla_development\joomla-cms). Then click Finish.
  6. In Eclipse, create new PHP project in same folder. It will give a warning that files exist in this folder (which is OK).
  7. In Eclipse, right-click on the project and select Team→Share to share the project. In the Share Project window, select Git and click Next. In the Configure Git Repository window, select "Use or create repository in parent folder of project" and click finish.
  8. Note that this creates a relationship between the local repository and the joomla-cms repository on Github. You can see this relationship by opening the Repositories View and expanding the Remotes tree as shown below.
    Git-document-screenshot-20120530-01.png

TortoiseGit Commands:[edit]

  1. Clone joomla-cms repository using the read-only URL. Right-click on project folder ("tortoise-git" in this example) and select "Git Clone" as shown below.
    Tortoisegit-tutorial-screenshot-20120612-01.png
  2. Enter the read-only URL and the desired project directory (again, "tortoise-git" in this example), as shown below.
    Tortoisegit-tutorial-screenshot-20120612-02.png
  3. The system will work for a few minutes, showing progress in the Receiving objects window.
    Tortoisegit-tutorial-screenshot-20120612-03.png
  4. When it is done, a success message will show as shown below.
    Tortoisegit-tutorial-screenshot-20120612-04.png

Update Local Git Repository with Changes Made to Trunk[edit]

The first time you clone the Joomla CMS repository on Github, you will have the latest version of trunk. However, the trunk changes frequently, as bugs are fixed and new features added. This means that you need to keep your local repository up to date with these changes, for example each day when you start working.

CLI:[edit]

  1. Make sure you are in the master branch of your local repository with this command: git checkout master
  2. Pull changes from the origin (joomla-cms): git pull origin
  3. If there are any changes, these will show. Otherwise, it will say "Already up to date."
  4. Check your status by entering: git status. The display should show:
 $ git status
# On branch master
nothing to commit (working directory clean)

Eclipse[edit]

  1. Make sure you are on the master branch: Team→Switch To→master. (If you are already on master, the master branch will be grayed out.)
  2. Pull changes from origin. Right-click on the project in PHP Explorer and select Team→Pull.
  3. If there were changes made, you will see something like this.
    Git-document-screenshot-20120529-01.png

    Otherwise, you will see a message indicating that everything was up to date, like this.
    Git-document-screenshot-20120529-06.png

TortoiseGit[edit]

  1. Make sure you are on the master branch by entering TortoiseGit→Switch/Checkout and selecting the "master" branch.
  2. Pull changes from origin. Right-click on the project folder, and select TortoiseGit→Pull as shown below.
    Tortoisegit-tutorial-screenshot-20120612-05.png
  3. In Remote, select "origin" as shown below and press OK.
    Tortoisegit-tutorial-screenshot-20120612-06.png
  4. The system will show a success message as follows.
    Tortoisegit-tutorial-screenshot-20120612-05.png

Important Notes About Patch File Format[edit]

Leading "a/" and "b/"[edit]

There is a confusing aspect of working with patches between SVN, Eclipse, Git and the CLI. This has to do with the way files are referenced inside a patch. Most patches made with Eclipse and Git will have a leading "a/" and "b/" in front of the file names. For example, a standard Git patch will look like this:

diff --git a/components/com_content/controller.php b/components/com_content/controller.php
index 53cc63a..25cee76 100644
--- a/components/com_content/controller.php
+++ b/components/com_content/controller.php

However, patches made with SVN or using the "--no-prefix" option in Git will omit the leading "a/" and "b/" and show in the following format:

diff --git components/com_content/controller.php components/com_content/controller.php
index 53cc63a..ba2de80 100644
--- components/com_content/controller.php
+++ components/com_content/controller.php

Most patches will be in the first format. It is easy to apply patches in either format, but the exact commands are different. These are outlined below.

Error Applying Patch Using CLI[edit]

In some cases, patches made using Eclipse may not apply correctly using the CLI "apply" command. For example, you might get an error: fatal: corrupt patch at line xxx. This appears to be caused by the fact that Eclipse does not add a blank line to the end of the patch file. If you have this problem, try adding a blank line at the end of the patch file.

Apply Patches and Pull Requests Without Branches[edit]

This can be done either with or without using branches. If you want to work on one patch at a time (similar to the SVN work flow), you can follow this work flow without branches.

CLI[edit]

  1. To apply a Git format patch: git apply <file>. For example: git apply mypatchfile.patch.
  2. To apply an SVN format patch: git apply -p0 <file>. For example: git apply -p0 mypatchfile.patch.

At this point, the proposed code changes have been made to your Joomla files. Now you can test the proposed changes to see whether they work correctly.

To apply a Github pull request, add ".diff" to the end of the URL. This will display a Git-formatted patch file in your browser. Save this file to your local machine and use the command above to apply it.

Eclipse[edit]

  1. To apply a Git format patch: Team→Apply patch. The Patch input specification window will show. You can apply a patch from a file or by copying the patch to the clipboard.
  2. Click Next to show the Target Resource window. Select the PHP project to apply to patch and click Next.
  3. The Review Patch window will show. IMPORTANT: If the patch is in Git format, set "Ignore leading path elements" to 1. If the patch is in SVN format, this is not needed.
  4. At this point, if the patch will apply correctly, the files will show with a blue arrow as shown below.
    Git-document-screenshot-20120530-02.png

Note: If a red "X" appears next to a file, it means the patch will not apply correctly. Check the patch file format to make sure you have the right setting for this type. Also, make sure you haven't already applied the patch.

TortoiseGit[edit]

  1. To apply a Git format patch: TortoiseGit→Review/apply single patch.
    Tortoisegit-tutorial-screenshot-20120612-08.png
  2. The following windows will show the files to be patched.
    Tortoisegit-tutorial-screenshot-20120612-09.png
  3. Click on the button "Patch all items". The screen will now show the changes to the last file in the patch as follows.
    Tortoisegit-tutorial-screenshot-20120612-10.png

Apply Patches and Pull Requests Using Branches[edit]

In many cases, it can be easier to create a Git branch for each issue you are working on. This way you can be working on several issues at one time while keeping the code changes for each issue separated. Creating branches in Git is very easy. Here is the work flow for applying patches using branches.

CLI[edit]

  1. Create a new branch: git branch issue-123 (creates a new branch called issue-123).
  2. Apply the patch as shown earlier.
  3. Commit the code change to the branch: commit -a. Now git will open the editor you chose when you installed git. Enter the commit message in the first line of the editor and save and exit. (If you are unfamiliar with the editor, you can either change the editor or use Eclipse, which bypasses this step in the process.) The commit message should be something short that tells you what you did, for example "Applied patch 123.patch").
  4. At this point, the branch contains the modified version of the Joomla files for you to test. You can easily switch back to the standard files with the command: git checkout master. To switch back to the modified version, use the command: git checkout issue-123.

Eclipse[edit]

  1. Create a new branch: Team→Switch To→New Branch. The Create a new branch window will show. Enter the name of the branch and click on Finish.
  2. Apply the patch as shown earlier.
  3. Commit the code change: Team→Commit. The Commit Changes window will show. Enter the commit message as shown in the example below.
    Git-document-screenshot-20120530-03.png
    At this point, you can review the code changes or simply press the Commit button to commit the changes.
  4. To switch back to master or any other branch, again use Team→Switch To and select master or the desired branch.

TortoiseGit[edit]

  1. Create a new branch: Right-click on the project folder and select TortoiseGit→Create Branch, as shown below.
Tortoisegit-tutorial-screenshot-20120612-11.png
  1. The following screen will show.
Tortoisegit-tutorial-screenshot-20120612-12.png
  1. Enter the name of the new branch in Branch and press OK. Note that this also switches you to the new branch.
  2. Apply the patch as shown earlier.
  3. Commit the code change: Right-click on project folder, then Git Commit -> <your branch> as shown here.
Tortoisegit-tutorial-screenshot-20120612-16.png
  1. Enter a commit message, check that you are in the right branch, and press OK, as shown here.
Tortoisegit-tutorial-screenshot-20120612-17.png
  1. The system will show a success message as shown here.
Tortoisegit-tutorial-screenshot-20120612-18.png

Restore to Unmodified State (Without Branches)[edit]

If you are not using branches, when you are done testing an issue, you will need to restore your programs to the original unmodified state. Note that this is not needed if you are using branches.

CLI[edit]

  1. Use this command to undo any file changes: git reset --hard origin/master. If it doesn't work, you can use git apply -R <file> to the state before the patch was applied. For example, git apply -R folder/file.diff.
  2. Use this command to delete any new files added by the patch: git clean -f -d
    This removes added files and directories.
  3. Run the command: git status and make sure it says "nothing to commit (working directory clean)".

Eclipse[edit]

  1. Use this command to undo any file changes: Team→Reset to show the Reset window. Select "Hard" for the Reset type and click on Reset.
  2. To remove any new files added by a patch, simple navigate to the files and delete them.

TortoiseGit[edit]

  1. Use this command to undo any file changes: TortoiseGit→Revert.
    Tortoisegit-tutorial-screenshot-20120612-21.png
    • Any changed files will show in a window as follows.
      Tortoisegit-tutorial-screenshot-20120612-22.png
    • Check all changed files and click OK. The success screen will show as follows.
      Tortoisegit-tutorial-screenshot-20120612-22a.png
  2. Use this command to delete any new files: TortoiseGit→Clean up.
    Tortoisegit-tutorial-screenshot-20120612-23.png
    The system will show a success window and the files that were deleted as follows.
    Tortoisegit-tutorial-screenshot-20120612-24.png

Restore to Unmodified State With Branches[edit]

If you use branches, it is much easier to switch back to the unmodified programs. You simply change back to the master branch. Once you are done with an issue, you will likely want to delete the branch you created. Here are the commands for that.

CLI[edit]

  1. Change back to the master branch: git checkout master
  2. Delete the desired branch: git branch -D issue-123 (where issue-123 is the branch name)

Eclipse[edit]

  1. Change back to the master branch: Team→Switch to→master.
  2. Delete the desired branch: Team→Advanced→Delete Branch and select the desired branch to delete.

TortoiseGit[edit]

  1. Change back to the master branch: TortoiseGit→Switch/Checkout.
    Tortoisegit-tutorial-screenshot-20120612-13.png
  2. Select master as shown here.
    Tortoisegit-tutorial-screenshot-20120612-25.png
  3. Delete the desired branch:
    • TortoiseGit→Show Log as shown here.
      Tortoisegit-tutorial-screenshot-20120612-19.png
    • Right-click on the HEAD line and select Delete branch/tag→<name of the branch> as shown here.
      Tortoisegit-tutorial-screenshot-20120612-26.png

Testing Older Versions of Trunk[edit]

At times, it is helpful to figure out which commit might have introduced a new issue. With Git it is easy to restore the code base to any point in time and then test whether an issue was present or not. Note that this is more difficult with the CLI version.

CLI[edit]

  1. Write some past commits to a temporary file. For example: git log --since="2 weeks ago" --mylogfile.txt
  2. Find the commit id of the desired date. Note that we only need the first 8 characters of the commit id.
  3. Checkout the desired commit: git checkout <id> (for example: git checkout ba574af0).
  4. See the command reference for git bisect for a more advanced way to find which commit caused a bug.

Eclipse[edit]

  1. Open the History View: Team→Show in History. This will show a view similar to this:
Git-document-screenshot-20120530-04.png

This view shows every commit to the CMS repository. To restore your local files to a prior time, right click on the desired row in the history view and select Checkout. Your local files will be changed to the state as of that commit. You can now test that version.

  1. To change to a different version, repeat this process. To change back to the master branch (the latest version), do Team→Switch to→Master.

TortoiseGit[edit]

  1. Open the Log window. TortoiseGit→Show Log as shown here.
    Tortoisegit-tutorial-screenshot-20120612-19.png
  2. Right-click on the desired commit in the log listing and select Switch/Checkout to this... as shown here.
    Tortoisegit-tutorial-screenshot-20120612-27.png
    You can now test that version.
  3. To change to a different version, repeat this process. To change back to the master branch (the latest version), do TortoiseGit→Switch/Checkout and select master.