Eclipse Golo has been terminated

The Eclipse Golo project has been terminated.

The developers have moved on to other personal and professional priorities. Migrating the code base beyond Java 8 has turned out to be too complex due to the Java Platform Module System introduced with Java 9 and strong encapsulation constraints.

We would like to thank all contributors and participants over the years for their enthusiasm!

Thanks for the ride, it's been a fun one 🙏

Golo
— a lightweight dynamic language for the JVM.

back to the front page

 Golo News Roundup #8

Here is the first post of 2014!

This edition welcomes 2 guest writers in which Daniel and Philippe pitch their latest Golo projects: Golosa Test and M33ki.

What’s new in Golo?

As you probably know, we released Golo 0-preview10 last December. This release comes with new tools to create projects and generate documentation. It also brings better debuggers support, shell completion and direct closure conversion for Java APIs.

More recently, Daniel brought the support of fallback methods for dynamic objects. This allows invoking methods even on undefined properties.

Other than that, we spent a significant amount of time in rewriting a benchmarks suite with the OpenJDK JMH harness.

Benchmarking applications running on an adaptive runtime like the JVM is hard. JMH provides the building blocks to shield from classical traps like unwanted dead-code elimination, loop unrolling, on-stack replacement and more. The HotSpot wiki contains lots of technical details on what kind of JIT compilation techniques are being used.

The TL;DR takeaway is that it is very easy to measure the wrong things when benchmarking on the JVM.

With a good understanding of what HotSpot does and a tool like JMH, it is easier to get meaningful benchmark results. We encourage you to have a look!

Let us now read what our guest writers have to say.

Golosa Test

— By Daniel Petisme

The world didn’t need another tesing framework. So we built yet another one. A Golo one: Golosa Test

Golosa Test is a behavior-driven development framework for testing mainly inspired by Jasmine (a JS behavioral testing framework). Since a snippet is worth a thousand words:

module my.awesome.test

# The only import gather all the Golosa SA API
import golosa.test.$

# A test module must have a test method
function test = {

  # Define a Test suite with a description and an executable code block (ie. a lambda)
  describe("A test suite", {

    # A lambda can contain any executable code necessary, be careful with Golo   scoping rules
    var aList = null

    # Setting up the test fixture.
    beforeEach({
      aList = list[]
      aList: append("something")
    })

    # Defines a specification
    it("contains a specification with an expectation", {
      expect(aList: size()): toBe(1)
      expect(aList: isEmpty()): not(): toBeTrue()
    })

    # Disable a suite or a spec by prefixing it with 'x'
    xit("contains something", {
      expect("something"): toBeIn(aList)
    })

    # Tear down the test fixture to return to the original state.
    afterEach({
      aList = null
    })
  })
}

Do not trust this snippet, test by yourself! Go to Golosa Test project page and give it a try…

M33ki web framework

— By Philippe Charrière

M33ki is a !(not)Opinionated Web Framework (by TypeUnSafe inc.). Of course, any resemblance to existing frameworks is purely coincidental.

M33ki Framework makes it easy to build web applications with Golo and Java. M33ki is based on a lightweight, stateless or stateful (as you want), web-friendly architecture.

Built on Golo and SparkJava (and some other libraries), M33ki provides minimal resource consumption (CPU, memory, threads) for embedded web server.

Caution: M33ki (on GitHub) is a proof-of-concept right now.

comments powered by Disqus


Copyright © 2012 – 2018 INSA Lyon, CITI Laboratory and contributors.

Privacy Policy | Terms of Use | Copyright Agent | Eclipse Public License | Legal Resources