forked from electron/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhuman-data.js
More file actions
99 lines (80 loc) · 2.99 KB
/
Copy pathhuman-data.js
File metadata and controls
99 lines (80 loc) · 2.99 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
const categories = require('../lib/app-categories')
const mocha = require('mocha')
const describe = mocha.describe
const it = mocha.it
const fs = require('fs')
const path = require('path')
const expect = require('chai').expect
const yaml = require('yamljs')
const isUrl = require('is-url')
const cleanDeep = require('clean-deep')
const imageSize = require('image-size')
const slugg = require('slugg')
const slugs = fs.readdirSync(path.join(__dirname, '../apps'))
.filter(filename => {
return fs.statSync(path.join(__dirname, `../apps/${filename}`)).isDirectory()
})
describe('human-submitted app data', () => {
it('includes lots of apps', () => {
expect(slugs.length).to.be.above(200)
})
slugs.forEach(slug => {
describe(slug, () => {
const basedir = path.join(__dirname, `../apps/${slug}`)
const yamlFile = `${slug}.yml`
const yamlPath = path.join(basedir, yamlFile)
const iconPath = path.join(basedir, `${slug}-icon.png`)
it('is in a directory whose name is lowercase with dashes as a delimiter', () => {
expect(slugg(slug)).to.equal(slug)
})
it(`includes a data file named ${slug}.yml`, () => {
expect(fs.existsSync(yamlPath)).to.equal(true)
})
describe(`${yamlFile}`, () => {
const app = yaml.load(yamlPath)
it('has a name', () => {
expect(app.name.length).to.be.above(0)
})
it('has a description', () => {
expect(app.description.length).to.be.above(0)
})
it('has a website with a valid URL', () => {
expect(isUrl(app.website)).to.equal(true)
})
it('has a valid repository URL (or no repository)', () => {
expect(!app.repository || isUrl(app.repository)).to.equal(true)
})
it('has a category', () => {
expect(app.category.length).to.be.above(0)
})
it('has a valid category', () => {
expect(app.category).to.be.oneOf(categories)
})
it('has no empty properties', () => {
expect(cleanDeep(app)).to.deep.equal(app)
})
})
describe('icon', () => {
it(`exists as ${slug}-icon.png`, () => {
expect(fs.existsSync(iconPath)).to.equal(true, `${slug}-icon.png not found`)
})
it('is a square', function () {
if (!fs.existsSync(iconPath)) return this.skip()
const dimensions = imageSize(iconPath)
expect(dimensions.width).to.be.a('number')
expect(dimensions.width).to.equal(dimensions.height)
})
it('is at least 128px x 128px', function () {
if (!fs.existsSync(iconPath)) return this.skip()
const dimensions = imageSize(iconPath)
expect(dimensions.width).to.be.above(127)
})
it('is not more than 1024px x 1024px', function () {
if (!fs.existsSync(iconPath)) return this.skip()
const dimensions = imageSize(iconPath)
expect(dimensions.width).to.be.below(1025)
})
})
})
})
})