GatorGradle: GatorGrader Gradle Integration
GatorGradle integrates GatorGrader into a Gradle project.
Running Checks
Grading checks can be performed as specified in a configuration file. To run
the GatorGrader checks, use the grade
task, like so:
gradle grade
To run the GatorGrader checks and collect grade report to a configured endpoint,
first store the endpoint and API key in environment variables with GATOR_ENDPOINT
and GATOR_API_KEY
, then use the report
task, like so:
gradle --continue grade report
Installing Dependencies
GatorGradle requires that Git, a version of Python greater than 3.6, and Pipenv are installed – it will automatically bootstrap a valid GatorGrader installation from there. Additionally, Gradle 5.0+ is required to actually use GatorGradle (GatorGradle is compatible with 4.0+ as well) . A complete example configuration of Gradle and GatorGradle is available in the Java Sample Assignment repository.
NOTE: GatorGradle will ONLY automatically install GatorGrader.
Configuring Checks
The grade
task reads the configuration provided in config/gatorgrader.yml
(to possibly be renamed to config/gatorgradle.yml
at some point in the
future) by default, and then performs the specified commands. Execution of
checks is parallelized, so execution order is not guaranteed. Generally, commands
which run faster are finished earlier, however. An example of a configuration file
is given below.
# comments are possible by using `#`
---
# Specify the name of this assignment, displayed in the output
name: gatorgrader-samplelab
# Should we break the build if any checks fail?
break: true
# Should we break the build as soon as a single check fails?
fastfail: false
# Specify an indentation level in spaces to be used in this file
indent: 4
# Command to get user info/id
# default is 'git config --global user.email'
idcommand: echo $TRAVIS_REPO_SLUG
# Specify a reference to checkout to in GatorGrader
version: v0.2.0
# Specify 'executables' that can be run as checks
executables: cat, bash
# Specify a script or executable to run on startup
startup: ./config/startup.sh
# Specify the path to the reflection file
reflection: writing/reflection.md
---
# Form paths with these tree-like structures: they will
# be used to determine where and to what file a given check is tested against
src/main:
java:
samplelab/SampleLabMain.java:
# Specify checks by simply writing arguments to GatorGrader
--exists
--single 1 --language Java
--multi 3 --language Java
--fragment "println(" --count 2
--fragment "new DataClass(" --count 1
--regex "new\s+\S+?\(.*?\)" --count 2 --exact
samplelab/DataClass.java:
--exists
--multi 1 --language Java
--single 1 --language Java
--fragment "int " --count 1
writing:
# A pure check is simply a call-out to the OS to run
# whatever program you desire; the working directory
# is set by the context (in this case, 'writing/')
(pure) ./writing-check.sh reflection.md param2
reflection.md:
# for checks that are 'executables', the context
# is given after the executable: this check results
# in executing 'mdl writing/reflection.md'
mdl
cat
--paragraphs 2
--words 6
# Any checks outside of the tree structure will not have
# a file or directory based context; if a directory is needed
# it will be the base project directory
--commits 18
Output Summary
The grade
task outputs a summary of all commands run once it has finished.
It uses a similar structure to GatorGrader’s own output, providing descriptions
and diagnostics for grading criterion. An example output from running gradle grade
on the Sample Lab is shown
below. Color is also added for easier visibility on a terminal screen, with red ✘
s
for failed criterion and green ✔
s for passing ones. Diagnostics get a bold yellow
➔
along with colored text for added visibility. Finally, the large status box at
the end of the output is colored according to the overall success (100%)/failure
of the grading.
[...]
✔ The file writing/reflection.md passes mdl
✔ The SampleLabMain.java in src/main/java/samplelab has at least 1 of the 'new DataClass(' fragment
✘ The reflection.md in writing has at least 6 word(s) in every paragraph
✔ The DataClass.java in src/main/java/samplelab has at least 1 of the 'int ' fragment
✔ The SampleLabMain.java in src/main/java/samplelab has at least 1 single-line Java comment(s)
✔ Repository has at least 18 commit(s)
✘ The SampleLabMain.java in src/main/java/samplelab has at least 2 of the 'new Date(' fragment
✔ The DataClass.java in src/main/java/samplelab has at least 1 multiple-line Java comment(s)
✔ The SampleLabMain.java in src/main/java/samplelab has at least 2 of the 'println(' fragment
✘ The SampleLabMain.java in src/main/java/samplelab has at least 3 multiple-line Java comment(s)
✘ The reflection.md in writing has at least 2 paragraph(s)
-~- FAILURES -~-
✘ The reflection.md in writing has at least 6 word(s) in every paragraph
➔ Found 4 word(s) in a paragraph of the specified file
✘ The SampleLabMain.java in src/main/java/samplelab has at least 2 of the 'new Date(' fragment
➔ Found 1 fragment(s) in the output or the specified file
✘ The SampleLabMain.java in src/main/java/samplelab has at least 3 multiple-line Java comment(s)
➔ Found 2 comment(s) in the specified file
✘ The reflection.md in writing has at least 2 paragraph(s)
➔ Found 1 paragraph(s) in the specified file
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Passed 7/11 (64%) of checks for gatorgrader-samplelab! ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
Including GatorGradle in your project
Including GatorGradle in your project is simple. If no extra configuration is
required, simply insert the following code block at the beginning of your
build.gradle
to use version 0.3.4
. Find out what version is current by
visiting the Gradle Plugin Portal.
Other configuration and installation information is also available there,
including a different script that will always use the most recent version!
plugins {
id "org.gatored.gatorgradle" version "0.3.4"
}
Contributing
If you’d like to contribute, the javadoc for all existing code is available:
Testing
To run the plugin on a local gradle project, first run gradle install
inside
your cloned GatorGradle repository. Then, add the groovy code below to your
local gradle project, replacing the plugin
block.
buildscript{
repositories {
mavenLocal()
dependencies {
classpath 'org.gatored:gatorgradle:+'
}
}
}
apply plugin: 'org.gatored.gatorgradle'
Publishing
First, log into the Gradle Plugin Portal with gradle login
; this will add your
publishing key and secret in the following format to ~/.gradle/gradle.properties
:
#Updated secret and key with server message: Generated key 'walle' for 'michionlion'
#Tue, 20 Aug 2019 20:40:22 -0400
gradle.publish.key=<key>
gradle.publish.secret=<secret>
You’ll need to request the key and secret from the maintainer if you are not
publishing to your own account. Next, ensure that the project is entirely built
and tested with gradle clean build check
, and then execute gradle publishPlugins
to publish the plugin to the Gradle Plugin Portal.
Finally, publish the Javadocs by running gradle publishJavadocs
. Throughout this
entire process, ensure you have no unstaged changes and the remote repository
is completely identical to the one your are publishing from your local machine.