chai = require("chai") chai.should() expect = chai.expect request = require "request" Settings = require "settings-sharelatex" port = Settings.internal?.web?.port or Settings.port or 3000 buildUrl = (path) -> "http://localhost:#{port}/#{path}" describe "Opening", -> before (done) -> @jar = request.jar() request.get { url: buildUrl("register") jar: @jar headers: "X-Forwarded-Proto": "https" }, (error, response, body) => csrf = body.match("")[1] request.post { url: buildUrl("register") form: email: Settings.smokeTest.user password: Settings.smokeTest.password _csrf: csrf jar: @jar headers: "X-Forwarded-Proto": "https" }, (error, response, body) -> throw error if error? done() it "a project", (done) -> request { url: buildUrl("project/#{Settings.smokeTest.projectId}") jar: @jar headers: "X-Forwarded-Proto": "https" }, (error, response, body) -> expect(error, "smoke test: error in getting project").to.not.exist expect(response.statusCode, "smoke test: response code is not 200 getting project").to.equal(200) # Check that the project id is present in the javascript that loads up the project match = !!body.match("\"project_id\":\"#{Settings.smokeTest.projectId}\"") expect(match, "smoke test: project page html does not have project_id").to.equal true done() it "the project list", (done) -> request { url: buildUrl("project") jar: @jar headers: "X-Forwarded-Proto": "https" }, (error, response, body) -> expect(error, "smoke test: error returned in getting project list").to.not.exist expect(response.statusCode, "smoke test: response code is not 200 getting project list").to.equal(200) expect(!!body.match("