lab01 : Polynomials

num ready? description assigned due
lab01 true Polynomials Fri 06/24 09:30AM Wed 06/29 05:00PM

In this lab:

Overview

This lab will build on the material we introduced about Ant and JUnit in lab00.

You will also apply what you are learning from your reading about inheritance, object equality, and using the ArrayList class.

Special instructions for those who choose to work as a pair

For some of the labs this quarter, you may choose to work individually, or in a pair.

Although pair programming is optional in this course, you are STRONGLY ENCOURAGED to use pair programming at least once this quarter, and then as often as possible after that, because it is important training in how to use github for collaboration.

If you choose to work in a pair, you should create TWO repos:

Working in a pair? Switch navigator/driver frequently and tradeoff who commits

If you are in your repo directory, and type git log at the command line, you’ll see a list of the commits for your repo.

Record that you are pairing on each commit message by putting the initials of the pair partners at the start of the commit message.

E.g. If Selena Gomez is driving, and Justin Timberlake is navigating, and you fixed a bug in your getDanceMoves() method, your commit message should be SG/JT fixed bug in getDanceMoves()

We should see frequent switches between SG/JT and JT/SG.

Step-by-Step

Step 0: Preliminaries

Step 0a: Creating a repo

(0) Create a PRIVATE repo for lab01_githubid (or for a pair, lab01_github1_github2) under the UCSB-CS56-M16 organization.

For pair partners: create one repo. One user will create repo, and add the second user as a collaborator.

(1) If working in a pair: go under settings, then collaborators, and add your pair partner.

(2) Clone your repo into your ~/cs56 directory, or whereever you are working.

Step 0b: Copying files

You are going to copy files into your repo from two places:

From /cs/faculty/pconrad/public_html/cs56/16W/labs/lab03/code, you will copy the files that you see at this link:

http://www.cs.ucsb.edu/~pconrad/cs56/16W/labs/lab03/code

Since one of the things we are coping is a subdirectory, we’ll need to use a cp -r command, like this:

cp -r /cs/faculty/pconrad/public_html/cs56/16W/labs/lab03/code/* .

Also, you are going to copy you build.xml file from your lab00

You’ll edit it as needed for this lab.

Step 0c: A few small adjustments

(1) Make one small change to your build.xml if it is not already there. (It may already be there, in which case there is nothing to DO, but you should still read the EXPLANATION here to understand what these two lines of build.xml code do.)

  debug="true" debuglevel="lines,vars,source"

For example, before you might have:

   <javac srcdir="src" destdir="build" includeantruntime="false"  >   

Change this to:

    <javac srcdir="src" destdir="build" includeantruntime="false" debug="true" debuglevel="lines,vars,source" >   

Note that this is called “adding two attributes to an open tag”. This is important to know for the exam (i.e. what a tag is, and what an attribute is.)

Adding these attributes will help improve the error messages you get when a program throws an exception. For example, instead of:

    -bash-4.2$ java Foo
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10
        at Foo.main(Unknown Source)
    -bash-4.2$ 

You’ll get the following. Note that the output now includes a way of finding what line of source code was executing when the exception occurred: the name of the file, and the line number of source code in that file. Note how:

    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10
        at Foo.main(Foo.java:7)

(2) Change the run target of your build.xml to run the main from the Polynomial class. Test this. You’ll probably get a “usage” message indicating that there aren’t enough command line arguments. That’s not a problem—you’ll actually be running this from the command line most of the time (more on that later.) Just make sure that the ant run target actually does depend on the compile target, and that the code compiles and runs.

(3) Change the jar task so that the name of the jar file created is polynomial.jar instead of rational.jar.

Also, change the name of the main that it loads into the manifest for the jar file.

(4) Commit all these changes:

Step 1: A note about the .git directory and the .gitignore file

If you aren’t already there, cd into your repo directory.

As you may know, in Unix, “hidden files” are those that start with a dot.

The -a flag of the Unix ls command can be used to list hidden files in directory listings.

What is the .git directory?

NOTE: The contents of this section may be something you are tested on on Midterm Exam 1 and subsequent exams, so READ CAREFULLY!

The .git directory is the magic ingredient that turns an ordinary directory into a git repository.

For now, that’s all you need to know about the contents of the .git directory. However, if you want to learn more, you are encouraged to read ahead in the GIT pocket guide. The internals of git are fascinating, and the more you know, the more power you will have to make git do all kinds of wonderful tricks.

What is the .gitignore file?

The .gitignore file is NOT inside the .git directory, but instead is considered a regular file in the repository.

BUT, the .gitignore file has special powers over the way that git operates.

Generally speaking, when we set up a repository, we want to store only SOURCE CODE:

We also don’t want to store backup files, such as the files that emacs creates that end in tilde, such as Foo.java~, Bar.java~, etc.

The .gitignore helps us do that. Use the more command to list the contents of your .gitignore file:

-bash-4.2$ more .gitignore
*~
*.class
-bash-4.2$

You see that there are two lines in this file.

You will see that when you do “git status” in this repo, the backup and .class files don’t show up. They are ignore by git. And that’s the way we want it.

What YOU NEED TO DO for this step

You need to add one more lines into the .gitignore

.ant-targets-build.xml

Optionally, if you use emacs, you may want to add this:

*~

The .ant-targets-build.xml line says to ignore any file with this name. That file is one that is used by ant to cache some intermediate results when you do certain ant commands. We don’t want to store that in the repo.

Make those changes, then commit them:

Summary of this Step

In short:

Step 2: Making a parallel public javadoc repo

In lab00, we set up a public repo, lab00_javadoc_github, as a sibling of our private repo, lab00_github, so that we could publish our javadoc.

In this step, please do the SAME thing for your lab01 repo.

Your public repo will have the same name as your private repo, except that it will start with lab01_javadoc_ instead of lab01_. The rest of the name is either a single github id, or a pair of githubids separated by an underscore.

The instructions for setting this up are here:

Once you’ve done these things, you are ready to move on to the Java programming part of this lab: * Set up this additional lab01_javadoc_... repo * Adjust the default branch of that repo to gh-pages * Clone it as a sibling of your lab01_... repo * Make the necessary adjustments to the build.xml of your private repo * Generate the javadoc * Publish it in the public repo

Step 3: Java Programming

Your programming task in this lab can be described very simply: replace all the stubs in Polynomial.java with code that

It is possible (though unlikely) that there may be typos/errors in the unit tests themselves. If you suspect this, please post something on the Gauchospace forum “Report Errors in Unit Tests Here”. The FIRST person/pair partner to CORRECTLY identify each incorrect unit test (supplying a correct test in its place) will receive extra credit.

If there are corrections to the tests, that information will be sent out to you by email and posted on the “Instructor Announcements” forum in Gauchospace.

Do NOT simply change the PolynomialTest.java file. We will test your program against the original PolynomialTest.java file (with any corrections that are distributed).

You may ADD tests to PolynomialTest.java, but you may not CHANGE the tests that are listed there or delete tests, unless you have been told to do so in an email from the instructor.

For any other typo corrections, please post to Piazza.

I suggest that you work in this order. There are also three hints for debugging that follow this suggested order of work. You may want to read though ALL of the instructions in Step 2 before starting anything.

Suggested order of work

Helper functions are a good idea

If you find that a certain method is getting a bit too complex, or if you find that you are repeating yourself a lot, you may want to factor some code out into helper methods.

There are two approaches to dealing with helper methods, each of which can be argued:

My suggestion is: make them private UNLESS you write units tests. And writing units tests is a VERY GOOD IDEA. But, that’s up to you.

Additional debugging help

There are three additional things that can help while doing your debugging:

By the way, the constructor that creates a Polynomial object from a String is already written for you, and is, to the best of our knowledge, correctly implemented. It should pass its tests once the other methods are correctly implemented—however, until you get toString, the constructor that takes an int [], and the .equals method working, however, some of its tests may fail.)

When all the tests pass, you may then add additional tests for other kinds of polynomials (both well formed and badly formed) that are not covered by the tests that you see in PolynomialTest.java. The number of such tests is up to you. There is such as thing as too many tests, and there is such a thing as not enough tests. Finding the right balance is part of the exercise here.

The reason for adding the additional tests is to try to anticipate what the “secret” tests might be testing for, i.e cases not already covered by the tests in PolynomialTest.java.

When you feel you have tested sufficiently, and all your tests pass, you are ready for your final check over, then submission on Gauchospace.


    public class PolynomialDebugging {

     public static void main (String [] args) {
         if (args[0]=="1") {
            // Put some code you want to test here
         } else if (args[0]=="2") {
            // Put some code you want to test here
         } else 
        .. // continue in this fashion
     }

    }

The point of this is to be able to isolate one small thing that you are trying to debug, independent of all the confusing output of all the many test cases, and so you can see your debugging print statements more easily. If you do this, please DO git add, git commit, git push the PolynomialDebugging class. Note that we won’t grade that class—and you aren’t required to use one. This is just a suggestion in case you find it helpful.

Step 3: Preparing to submit: final code walkthrough against rubric

Now, you are almost done. The last four steps are to:

Checking over your code

First, check your code Check it against two things:

  1. ALL OF THE INSTRUCTIONS IN THIS LAB ASSIGNMENT. Start over at the very first step. If you are working a pair, have one pair partner read through the instructions, and have the other pair partner check the code (or in the case of the javadoc, check both the code, and what appears on the web.)
  2. ALL OF THE ITEMS IN THE GRADING RUBRIC. The grading rubric for this lab appears near the end of this file. It is the checklist that the TAs and instructor will use to determine your lab grade. Again, if working in a pair, divide up the responsibility (switching roles)—one person read the rubric items out loud, and the other person checks.

Even if you “solo programmed” this lab, you may want to see if you can find someone in the lab that also solo programmed, and ask him/her to be a “rubric buddy” with whom you can take turns doing this checklist step.

Updating javadoc

If you are working along, right before you do the final submission, do a “git commit”, “git push” and then run “ant javadoc”.

Then do the steps to publish the updated javadoc to your public repo.

Final git pull, git status, git add, git commit, git push origin master

Go through the git steps one last time in case you made any last minute changes. Be sure that your repo is up to date. When it is, you are ready to submit on Gauchospace.

Step 4: Submitting on Gauchospace

Once you’ve done your final lookover and updated your javadoc, to let us know that you are finished with your lab, and that it is ready for grading, you should visit the lab01 link on Gauchospace.com and follow the instructions there to link to both your lab01 private repo, and the public repo for your javadoc.

If working in a pair, BOTH pair partners should do this, and if you ARE working in a pair, your submission on Gauchospace should indicate this.

Step 5: Submitting via submit.cs

UPDATE: We are using submit.cs for lab01.

Please download a .zip file from your github repo, rename it to lab01.zip and submit it at: https://submit.cs.ucsb.edu/p/513