forked from electron/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmachine-data.js
More file actions
128 lines (102 loc) · 4.06 KB
/
Copy pathmachine-data.js
File metadata and controls
128 lines (102 loc) · 4.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
const mocha = require('mocha')
const describe = mocha.describe
const it = mocha.it
const fs = require('fs')
const path = require('path')
const apps = require('..')
const isHexColor = require('is-hexcolor')
const categories = require('../categories')
const expect = require('chai').expect
describe('machine-generated app data (exported by the module)', () => {
it('is an array', () => {
expect(apps).to.be.an('array')
})
it('has the same number of apps as the apps directory', () => {
const slugs = fs.readdirSync(path.join(__dirname, '../apps'))
.filter(filename => {
return fs.statSync(path.join(__dirname, `../apps/${filename}`)).isDirectory()
})
expect(apps.length).to.be.above(100)
expect(apps.length).to.equal(slugs.length)
})
it('sets a `slug` property on every app', () => {
expect(apps.every(app => app.slug.length > 0)).to.equal(true)
})
it('sets a .png `icon` property on every app', () => {
expect(apps.every(app => !!app.icon.match(/\.png$/))).to.equal(true)
})
it('sets a (git-based) YYYY-MM-DD `date` property on every app', () => {
const datePattern = /\d{4}-\d{2}-\d{2}/
apps.forEach(app => {
expect(datePattern.test(app.date)).to.equal(true, `${app.slug} does not have date property`)
})
})
it('sets an `iconColors` array on every app', () => {
apps.forEach(app => {
expect(app.iconColors).to.be.an('array', app.slug)
expect(app.iconColors.length).to.be.above(2, app.slug)
})
})
it('sets a `colors.goodColorOnWhite` hex value on every app', () => {
apps.forEach(app => {
expect(isHexColor(app.goodColorOnWhite)).to.eq(true)
})
})
it('sets a `colors.goodColorOnBlack` hex value on every app', () => {
apps.forEach(app => {
expect(isHexColor(app.goodColorOnBlack)).to.eq(true)
})
})
it('does not override good colors if they already exist', () => {
const hyper = apps.find(app => app.slug === 'hyper')
expect(hyper.goodColorOnWhite).to.eq('#000')
expect(hyper.goodColorOnBlack).to.eq('#FFF')
})
describe('releases', () => {
const releaseApps = apps.filter(app => app.latestRelease)
it('collects latest GitHub release data for apps that have it', () => {
expect(releaseApps.length).to.be.above(50)
})
it('sets `latestRelease` on apps with GitHub repos that use Releases', () => {
expect(releaseApps.every(app => app.latestRelease)).to.eq(true)
})
it('sets `latestReleaseFetchedAt`', () => {
expect(releaseApps.every(app => app.latestReleaseFetchedAt)).to.eq(true)
})
})
describe('readmes', () => {
const readmeApps = apps.filter(app => app.readmeCleaned)
it('collects READMEs for apps with GitHub repos', () => {
expect(readmeApps.length).to.be.above(50)
})
it('sets `readmeCleaned`', () => {
expect(readmeApps.every(app => app.readmeCleaned.length > 0)).to.eq(true)
})
it('sets `readmeOriginal`', () => {
expect(readmeApps.every(app => app.readmeOriginal.length > 0)).to.eq(true)
})
it('sets `readmeFetchedAt`', () => {
expect(readmeApps.every(app => app.readmeFetchedAt.length > 0)).to.eq(true)
})
})
it('rewrites relative image source tags', () => {
const beaker = apps.find(app => app.slug === 'beaker-browser')
const local = '<img src="build/icons/256x256.png"'
const remote = '<img src="https://github.com/beakerbrowser/beaker/raw/master/build/icons/256x256.png"'
expect(beaker.readmeOriginal).to.include(local)
expect(beaker.readmeOriginal).to.not.include(remote)
expect(beaker.readmeCleaned).to.not.include(local)
expect(beaker.readmeCleaned).to.include(remote)
})
})
describe('machine-generated category data (exported by the module)', () => {
it('is an array', () => {
expect(categories).to.be.an('array')
})
it('sets a `slug` string on every category', () => {
expect(categories.every(category => category.slug.length > 0)).to.equal(true)
})
it('sets a `count` number on every category', () => {
expect(categories.every(category => category.count > 0)).to.equal(true)
})
})