GithubHelp home page GithubHelp logo

uchi-db-hw0's Introduction

hw0

A simple Java project

Here you are writing a basic class that wraps some common Java containers (map, set, and list).

This class highlights Java concepts you may not be familiar with including:

  • Interfaces
  • Autoboxing (primitive types and classes for primitive types)
  • Generics (templates)
  • Function overloading
  • Singletons
  • Writing code for test-driven development
  • Running tests via ant

These concepts will be necessary for the lab assignments.

Things to do

Make sure you have git, a Java 1.7+ JDK, and ant installed and running on your machine.

You will need to edit HW0Runner and create an implementation class of the Containers interface.

Start by forking the hw0 repo and downloading the code for hw0 from the course GitHub.

Interfaces

If you have never worked with interfaces see: https://www.tutorialspoint.com/java/java_interfaces.htm

IDE

We have included a section on using the project with Eclipse.

To Submit

See the Piazza HW0 post for the due date and instructions and submission form.

Running Tests

SimpleDB and HW0 uses the Ant build tool to compile the code and run tests. Ant is similar to make, but the build file is written in XML and is somewhat better suited to Java code. Most modern Linux distributions include Ant.

To run the unit tests use the test build target:

$ cd [project-directory]
$ # run all unit tests
$ ant test
$ # run a specific unit test
$ ant runtest -Dtest=TupleTest

You should see output similar to:

 build output...

test:
    [junit] Running uchidb.ContainersTest
    [junit] Testsuite: uchidb.ContainersTest
    [junit] Tests run: 2, Failures: 0, Errors: 2, Time elapsed: 0.037 sec
    [junit] Tests run: 2, Failures: 0, Errors: 2, Time elapsed: 0.037 sec

 ... stack traces and error reports ...

The output above indicates that two errors occurred during compilation; this is because the code we have given you doesn't yet work. As you complete parts of the lab, you will work towards passing additional unit tests.

If you wish to write new unit tests as you code, they should be added to the test/uchicdb directory.

For more details about how to use Ant, see the [manual](http://ant.apache.org/manual/). The [Running Ant](http://ant.apache.org/manual/running.html) section provides details about using the `ant` command. However, the quick reference table below should be sufficient for working on the labs.

Command Description
ant Build the default target ( this is dist).
ant -projecthelp List all the targets in build.xml with descriptions.
ant test Compile and run all the unit tests.
ant runtest -Dtest=testname Run the unit test named testname.

If you are under windows system and don't want to run ant tests from command line, you can also run them from eclipse. Right click build.xml, in the targets tab, you can see "runtest" "runsystest" etc. For example, select runtest would be equivalent to "ant runtest" from command line. Arguments such as "-Dtest=testname" can be specified in the "Main" Tab, "Arguments" textbox. Note that you can also create a shortcut to runtest by copying from build.xml, modifying targets and arguments and renaming it to, say, runtest_build.xml.

Working in Eclipse

Eclipse is a graphical software development environment that you might be more comfortable with working in. The instructions we provide were generated by using Eclipse for Java Developers (not the enterprise edition) with Java 1.6.0_20 on Ubuntu 14.04 LTS. They should also work under Windows or on MacOS.

Set Up for Eclipse

  • git clone your repository
  • Run ant eclipse in the project directory (make sure you get no errors here)
  • Install and run Eclipse
  • File -> Import -> Projects From Git -> Local -> Then add the directory where you cloned your forked repo -> Finish
  • Next-> Import Existing Project
  • Click finish, and you should be able to see "uchidbhw0" as a new project in the Project Explorer tab on the left-hand side of your screen. Opening this project reveals the directory structure discussed above - implementation code can be found in "src," and unit tests and system tests found in "test."

Alternative Setting the Lab Up in Eclipse

  • Once Eclipse is installed, start it, and note that the first screen asks you to select a location for your workspace (we will refer to this directory as $W). Select the directory containing your hw0 repository.
  • In Eclipse, select File->New->Project->Java->Java Project, and push Next.
  • Enter "uchidbhw0" as the project name.
  • On the same screen that you entered the project name, select "Create project from existing source," and browse to $W/hw0.
  • Click finish, and you should be able to see "uchidbhw0" as a new project in the Project Explorer tab on the left-hand side of your screen. Opening this project reveals the directory structure discussed above - implementation code can be found in "src," and unit tests and system tests found in "test."

Note: that this class assumes that you are using the official Oracle release of Java. This is the default on MacOS X, and for most Windows Eclipse installs; but many Linux distributions default to alternate Java runtimes (like OpenJDK). Please download the latest Java6 updates from Oracle Website, and use that Java version. If you don't switch, you may see spurious test failures in some of the performance tests in later labs.

Running Individual Unit and System Tests

To run a unit test or system test (both are JUnit tests, and can be initialized the same way), go to the Package Explorer tab on the left side of your screen. Under the "uchidbhw0" project, open the "test" directory. Unit tests are found in the "uchidb" package. To run one of these tests, select the test (they are all called *Test.java - don't select TestUtil.java or SystemTestUtil.java), right click on it, select "Run As," and select "JUnit Test." This will bring up a JUnit tab, which will tell you the status of the individual tests within the JUnit test suite, and will show you exceptions and other errors that will help you debug problems.

Running Ant Build Targets

If you want to run commands such as "ant test" or "ant systemtest," right click on build.xml in the Package Explorer. Select "Run As," and then "Ant Build..." (note: select the option with the ellipsis (...), otherwise you won't be presented with a set of build targets to run). Then, in the "Targets" tab of the next screen, check off the targets you want to run (probably "dist" and one of "test" or "systemtest"). This should run the build targets and show you the results in Eclipse's console window.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.