Skip to content

Commit 69f082d

Browse files
soft commit
1 parent a6cfe3c commit 69f082d

16 files changed

+181
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.anvil
22
.DS_Store
3+
repos/*

hatchet.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
{}
1+
{
2+
"heroku": [
3+
"heroku/node-js-getting-started"
4+
],
5+
"lillianzhang331": [
6+
"lillianzhang331/default-node"
7+
]
8+
}

hatchet.lock

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
- - "./repos/heroku/node-js-getting-started"
3+
- a8ca3c56bde59ce00df12bc255238058bf03c38c
4+
- - "./repos/lillianzhang331/default-node"
5+
- 4b74be2a9cb36809c2a504ab88a47168a5cd8222

repos/heroku/node-js-getting-started

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit a8ca3c56bde59ce00df12bc255238058bf03c38c

repos/lillianzhang331/default-node

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 4b74be2a9cb36809c2a504ab88a47168a5cd8222

spec/fixtures/badNodeVersion/Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: node index.js

spec/fixtures/badNodeVersion/app.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "hello-world"
3+
}

spec/fixtures/badNodeVersion/index.js

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#!/usr/bin/env node
2+
3+
const http = require('http');
4+
const crypto = require('crypto');
5+
6+
const PORT = process.env.PORT || 5000;
7+
8+
// This will block the event loop for ~lengths of time
9+
function blockCpuFor(ms) {
10+
var now = new Date().getTime();
11+
var result = 0
12+
while(true) {
13+
result += Math.random() * Math.random();
14+
if (new Date().getTime() > now +ms)
15+
return;
16+
}
17+
}
18+
19+
// block the event loop for 100ms every second
20+
setInterval(() => {
21+
blockCpuFor(100);
22+
}, 1000)
23+
24+
// block the event loop for 1sec every 30 seconds
25+
setInterval(() => {
26+
blockCpuFor(1000);
27+
}, 30000)
28+
29+
// Allocate and erase memory on an interval
30+
let store = [];
31+
32+
setInterval(() => {
33+
store.push(crypto.randomBytes(1000000).toString('hex'));
34+
}, 500);
35+
36+
setInterval(() => {
37+
store = [];
38+
}, 60000);
39+
40+
const server = http.createServer((req, res) => {
41+
res.statusCode = 200;
42+
res.setHeader('Content-Type', 'text/plain');
43+
res.end("Hello, world!");
44+
})
45+
46+
server.listen(PORT, () => console.log(`Listening on ${PORT}`));
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "hello-world",
3+
"version": "1.0.0",
4+
"engines": {
5+
"node": "14.x.badversion"
6+
},
7+
"scripts": {
8+
"prettify": "prettier --single-quote --trailing-comma all --write 'bin/*' 'src/**/*.js'",
9+
"test": "jest --silent",
10+
"dev": "nodemon --watch . --watch src/* src/index.js",
11+
"build": "echo NODE_OPTIONS: $NODE_OPTIONS"
12+
},
13+
"main": "index.js",
14+
"license": "MIT",
15+
"devDependencies": {
16+
"jest": "^19.0.2",
17+
"nodemon": "^1.19.4",
18+
"prettier": "^0.22.0"
19+
},
20+
"dependencies": {}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

spec/hatchet/absolute_path_spec.rb

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
require_relative '../spec_helper'
2+
3+
#Test that all paths set by the buildpack are absolute instead of relative
4+
describe "Rails 5.1" do
5+
it "works with webpacker + yarn (js friends)" do
6+
buildpacks = [
7+
ENV["HATCHET_BUILDPACK_BASE"],
8+
"https://github.com/sharpstone/force_absolute_paths_buildpack"
9+
]
10+
Hatchet::Runner.new("node-js-getting-started", buildpacks: buildpacks).deploy do |app|
11+
#deploy works
12+
end
13+
end
14+
end

spec/hatchet/ci_spec.rb

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
require_relative '../spec_helper'
2+
3+
#Test CI deploys run tests and use the cache
4+
describe "Heroku CI" do
5+
it "Uses the cache" do
6+
Hatchet::Runner.new("node-js-getting-started").run_ci do |test_run|
7+
# puts test_run.output
8+
# what is the behavior of this for node js
9+
# expect(test_run.output).to match("Fetching rake")
10+
puts test_run.class
11+
puts test_run.output
12+
puts test_run.methods
13+
test_run.run_again
14+
puts test_run.output
15+
expect(test_run.output).to match("Using rake")
16+
expect(test_run.output).to_not match("Fetching rake")
17+
end
18+
end
19+
end

spec/hatchet/getting_started_spec.rb

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
require_relative '../spec_helper'
2+
3+
#Test deploying the getting started guide works
4+
describe "Heroku node getting started" do
5+
it "clears runtime cache" do
6+
Hatchet::Runner.new("node-js-getting-started").deploy do |app|
7+
#Deploy works
8+
end
9+
end
10+
end

spec/hatchet/stack_spec.rb

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
require_relative "../spec_helper"
2+
3+
describe "Stack Changes" do
4+
#Test upgrading stack invalidates the cache
5+
it "should not restore cached directories" do
6+
app = Hatchet::Runner.new("default-node", allow_failure: true, stack: "heroku-18").setup!
7+
app.deploy do |app, heroku|
8+
app.update_stack("heroku-16")
9+
run!('git commit --allow-empty -m "heroku-16 migrate"')
10+
11+
app.push!
12+
puts app.output
13+
expect(app.output).to include("Cached directories were not restored due to a change in version of node, npm, yarn or stack")
14+
end
15+
end
16+
17+
#Test cache for regular deploys is used on repeated deploys
18+
it "should not restore cache if the stack did not change" do
19+
app = Hatchet::Runner.new('default-node', stack: "heroku-16").setup!
20+
app.deploy do |app, heroku|
21+
app.update_stack("heroku-16")
22+
run!('git commit --allow-empty -m "cedar migrate"')
23+
app.push!
24+
puts app.output
25+
expect(app.output).to_not include("Cached directories were not restored due to a change in version of node, npm, yarn or stack")
26+
expect(app.output).to include("not cached - skipping")
27+
end
28+
end
29+
end

spec/hatchet/version_spec.rb

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
require_relative '../spec_helper'
2+
3+
#Test that builds fail when a bad version is specified
4+
describe "bad node version" do
5+
it "gives a helpful error" do
6+
Hatchet::Runner.new("spec/fixtures/repos/default-node", allow_failure: true).tap do |app|
7+
app.before_deploy do
8+
File.open("package.json", "w+") do |f|
9+
f.write '{"engines": {
10+
"node": "14.x.badversion"
11+
}}'
12+
end
13+
end
14+
app.deploy do
15+
expect(app.output).to include("Invalid semantic version \"14.x.badversion\"")
16+
end
17+
end
18+
end
19+
end

spec/spec_helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
ENV['HATCHET_BUILDPACK_BASE'] = 'https://github.com/heroku/heroku-buildpack-nodejs.git'
2+
13
require 'rspec/core'
24
require 'hatchet'
35
require 'fileutils'

0 commit comments

Comments
 (0)