-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGruntfile.js
108 lines (96 loc) · 3.38 KB
/
Gruntfile.js
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
/*
* grunt-vault
* https://github.com/briguy202/tools
*
* Copyright (c) 2015 Brian Hibma
* Licensed under the MIT license.
*/
module.exports = function(grunt) {
'use strict';
require('load-grunt-tasks')(grunt, {
pattern: ['grunt-*']
});
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js',
'tasks/*.js',
'<%= nodeunit.tests %>'
],
options: {
jshintrc: '.jshintrc'
}
},
// Before generating any new files, remove any previously-created files.
clean: {
tests: ['tmp', 'vaultDefault']
},
// Configuration to be run (and then tested).
vaultpull: {
options: {
noop: true
},
test_no_options: { },
test_destination_option: {
options: {
destination: 'tmp/findme'
}
},
test_from_local: {
options: {
// Running this task assumes that you are running an AEM environment at http://localhost:4502
noop: false,
destination: 'tmp/local'
}
}
},
vaultclean: {
options: {
noop: false
},
test_no_options: {
files: {
'tmp/test_no_options_cleaned.xml': ['test/fixtures/dirty.xml']
}
},
test_replacements: {
files: [
{ src: ['test/fixtures/dirty.xml'], dest: 'tmp/test_replacements_cleaned.xml' },
{ src: ['**/*.xml'], dest: 'tmp/replacements/', expand: true, cwd: 'test/fixtures' }
],
options: {
replacements: [
{ search: '/apps/geometrixx/', replacement: '/apps/dev/geometrixx/' },
{ search: '/content/dam/geometrixx/', replacement: '/content/dev/dam/geometrixx/' }
],
removal_nodes: ['sling:resourceType', 'pageTitle', 'lastModified', 'lastModifiedBy', 'dam:Comments', 'dam:extracted', 'isCheckedOut', 'uuid']
}
},
test_skipped: {
files: [
{ src: ['**/*.*', '!**/skippedFolder/*.*'], dest: 'tmp/skipped/', expand: true, cwd: 'test/fixtures/skipped' }
]
},
test_compression: {
files: [
{ src: ['**/*.xml'], dest: 'tmp/compression/', expand: true, cwd: 'test/fixtures' }
],
options: {
compress: true
}
}
},
// Unit tests.
nodeunit: {
tests: ['test/*_test.js'],
vaultpull_test: ['test/vaultpull_test.js'],
vaultclean_test: ['test/vaultclean_test.js']
}
});
// Actually load this plugin's task(s).
grunt.loadTasks('tasks');
grunt.registerTask('test_vaultpull', ['clean', 'vaultpull', 'nodeunit:vaultpull_test', 'clean']);
grunt.registerTask('test_vaultclean', ['clean', 'vaultclean', 'nodeunit:vaultclean_test', 'clean']);
grunt.registerTask('test_all', ['test_vaultpull', 'test_vaultclean']);
grunt.registerTask('default', ['jshint', 'test_all']);
};