-
-
Notifications
You must be signed in to change notification settings - Fork 680
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add test for combine tools script #3136
Changes from 7 commits
7bbc0a8
527cf9f
878023a
aedbb7c
86b914e
be80885
b04532e
3ea1852
1dfd188
103d643
b3a87dd
8357f56
db96f45
2b392d1
877990e
88b1491
dd90f3c
c347dbf
71e4f13
03e0664
18e9d98
b3ae94b
014fdb6
e74251e
07a7dc3
511c00f
91ad534
a78dfa1
8577070
57f4dc3
0f9052e
a8ab07c
a454c8d
b7bf6c9
f95ecce
acb1ec3
61ac558
906a873
5c4c192
6940c12
aeabab2
db33c88
820de27
b16fca9
995b9bd
4a4dcb7
bd6424d
233efdd
4b13fc8
0489f2d
774da3f
7c24517
7279d79
2eccf52
7601440
9afb39b
464b1dc
496de09
2419f06
11fcfe6
7536a96
5164452
ca72a7f
65fcfbd
302b332
1698ce2
31c66ec
3ea3753
fa11169
7a55807
0a7e3c2
993310e
97905ba
94f362c
9d3aa7c
05b14a2
8587110
1cc25cb
40dcc54
5d23088
fca4dcc
98f3238
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ const fs = require('fs') | |
const schema = require("./tools-schema.json"); | ||
const Ajv = require("ajv") | ||
const addFormats = require("ajv-formats") | ||
const { resolve } = require('path'); | ||
const Fuse = require("fuse.js"); | ||
const ajv = new Ajv() | ||
addFormats(ajv, ["uri"]) | ||
|
@@ -106,7 +105,7 @@ const getFinalTool = async (toolObject) => { | |
|
||
// Combine the automated tools and manual tools list into single JSON object file, and | ||
// lists down all the language and technology tags in one JSON file. | ||
const combineTools = async (automatedTools, manualTools) => { | ||
const combineTools = async (automatedTools, manualTools, toolsPath, tagsPath) => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what does |
||
for (const key in automatedTools) { | ||
let finalToolsList = []; | ||
if (automatedTools[key].toolsList.length) { | ||
|
@@ -136,14 +135,8 @@ const combineTools = async (automatedTools, manualTools) => { | |
finalToolsList.sort((tool, anotherTool) => tool.title.localeCompare(anotherTool.title)); | ||
finalTools[key].toolsList = finalToolsList | ||
} | ||
fs.writeFileSync( | ||
resolve(__dirname, '../../config', 'tools.json'), | ||
JSON.stringify(finalTools) | ||
); | ||
fs.writeFileSync( | ||
resolve(__dirname, '../../config', 'all-tags.json'), | ||
JSON.stringify({ languages: languageList, technologies: technologyList }), | ||
) | ||
fs.writeFileSync(toolsPath,JSON.stringify(finalTools)); | ||
fs.writeFileSync(tagsPath,JSON.stringify({ languages: languageList, technologies: technologyList }),) | ||
} | ||
|
||
module.exports = { combineTools } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fix this linter error |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"category1": { | ||
"description": "Sample Category", | ||
"toolsList": [ | ||
{ | ||
"title": "Tool B", | ||
"filters": { | ||
"language": "Python", | ||
"technology": ["Flask"] | ||
akshatnema marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
"links": { | ||
"repoUrl": "https://github.com/asyncapi/tool-b" | ||
} | ||
} | ||
] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[ | ||
{ | ||
"title": "Tool A", | ||
"filters": { | ||
"language": "JavaScript", | ||
"technology": ["Node.js"] | ||
}, | ||
"links": { | ||
"repoUrl": "https://github.com/asyncapi/tool-a" | ||
} | ||
} | ||
] |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,187 @@ | ||||||||||||||||||||||||||||
const fs = require('fs'); | ||||||||||||||||||||||||||||
const path = require('path'); | ||||||||||||||||||||||||||||
const { combineTools } = require('../../scripts/tools/combine-tools'); | ||||||||||||||||||||||||||||
const { createToolObject } = require('../../scripts/tools/tools-object'); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
jest.mock('../../scripts/tools/tags-color', () => ({ | ||||||||||||||||||||||||||||
languagesColor: [ | ||||||||||||||||||||||||||||
{ name: 'JavaScript', color: 'bg-[#57f281]', borderColor: 'border-[#37f069]' }, | ||||||||||||||||||||||||||||
{ name: 'Python', color: 'bg-[#3572A5]', borderColor: 'border-[#3572A5]' } | ||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||
technologiesColor: [ | ||||||||||||||||||||||||||||
{ name: 'Node.js', color: 'bg-[#61d0f2]', borderColor: 'border-[#40ccf7]' }, | ||||||||||||||||||||||||||||
{ name: 'Flask', color: 'bg-[#000000]', borderColor: 'border-[#FFFFFF]' } | ||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||
})); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
jest.mock('../../scripts/tools/categorylist', () => ({ | ||||||||||||||||||||||||||||
categoryList: [ | ||||||||||||||||||||||||||||
{ name: 'category1', description: 'Sample Category 1' }, | ||||||||||||||||||||||||||||
{ name: 'category2', description: 'Sample Category 2' } | ||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||
})); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
jest.mock('../../scripts/tools/tools-object', () => ({ | ||||||||||||||||||||||||||||
createToolObject: jest.fn((tool, _, __, isAsyncAPIrepo) => { | ||||||||||||||||||||||||||||
return { ...tool, isAsyncAPIrepo }; | ||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||
})); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const readJSON = (filePath) => JSON.parse(fs.readFileSync(filePath, 'utf-8')); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
describe('combineTools function', () => { | ||||||||||||||||||||||||||||
const toolsPath = path.join(__dirname, '../', 'fixtures', 'tools', 'tools.json'); | ||||||||||||||||||||||||||||
const tagsPath = path.join(__dirname, '../', 'fixtures', 'tools', 'tags.json'); | ||||||||||||||||||||||||||||
const manualToolsPath = path.join(__dirname, '../', 'fixtures', 'tools', 'manual-tools.json'); | ||||||||||||||||||||||||||||
const automatedToolsPath = path.join(__dirname, '../', 'fixtures', 'tools', 'automated-tools.json'); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
let manualTools; | ||||||||||||||||||||||||||||
let automatedTools; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
let consoleErrorMock; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
beforeAll(() => { | ||||||||||||||||||||||||||||
manualTools = readJSON(manualToolsPath); | ||||||||||||||||||||||||||||
automatedTools = readJSON(automatedToolsPath); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
consoleErrorMock = jest.spyOn(console, 'error').mockImplementation(() => {}); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Move Currently, the Apply the following changes: beforeAll(() => {
manualTools = readJSON(manualToolsPath);
automatedTools = readJSON(automatedToolsPath);
- consoleErrorMock = jest.spyOn(console, 'error').mockImplementation(() => {});
});
+ beforeEach(() => {
+ consoleErrorMock = jest.spyOn(console, 'error').mockImplementation(() => {});
+ });
+
+ afterEach(() => {
+ jest.clearAllMocks();
+ }); 📝 Committable suggestion
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @vishvamsinh28 Apply this suggestion There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
akshatnema marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||
afterAll(() => { | ||||||||||||||||||||||||||||
if (fs.existsSync(toolsPath)) fs.unlinkSync(toolsPath); | ||||||||||||||||||||||||||||
if (fs.existsSync(tagsPath)) fs.unlinkSync(tagsPath); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it('should combine tools and create correct JSON files', async () => { | ||||||||||||||||||||||||||||
await combineTools(automatedTools, manualTools, toolsPath, tagsPath); | ||||||||||||||||||||||||||||
akshatnema marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const combinedTools = readJSON(toolsPath); | ||||||||||||||||||||||||||||
expect(combinedTools).toHaveProperty('category1'); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const tagsData = readJSON(tagsPath); | ||||||||||||||||||||||||||||
expect(tagsData).toHaveProperty('languages'); | ||||||||||||||||||||||||||||
expect(tagsData).toHaveProperty('technologies'); | ||||||||||||||||||||||||||||
expect(tagsData.languages).toContainEqual({ | ||||||||||||||||||||||||||||
name: 'JavaScript', | ||||||||||||||||||||||||||||
color: 'bg-[#57f281]', | ||||||||||||||||||||||||||||
borderColor: 'border-[#37f069]' | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
expect(tagsData.languages).toContainEqual({ | ||||||||||||||||||||||||||||
name: 'Python', | ||||||||||||||||||||||||||||
color: 'bg-[#3572A5]', | ||||||||||||||||||||||||||||
borderColor: 'border-[#3572A5]' | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
expect(tagsData.technologies).toContainEqual({ | ||||||||||||||||||||||||||||
name: 'Node.js', | ||||||||||||||||||||||||||||
color: 'bg-[#61d0f2]', | ||||||||||||||||||||||||||||
borderColor: 'border-[#40ccf7]' | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
expect(tagsData.technologies).toContainEqual({ | ||||||||||||||||||||||||||||
name: 'Flask', | ||||||||||||||||||||||||||||
color: 'bg-[#000000]', | ||||||||||||||||||||||||||||
borderColor: 'border-[#FFFFFF]' | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it('should handle tools with missing language or technology', async () => { | ||||||||||||||||||||||||||||
const manualToolsWithMissingData = [ | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
title: 'Tool C', | ||||||||||||||||||||||||||||
filters: {}, | ||||||||||||||||||||||||||||
links: { repoUrl: 'https://github.com/asyncapi/tool-c' } | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
await combineTools({}, manualToolsWithMissingData, toolsPath, tagsPath); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const combinedTools = readJSON(toolsPath); | ||||||||||||||||||||||||||||
expect(combinedTools).toHaveProperty('category1'); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it('should sort tools alphabetically by title', async () => { | ||||||||||||||||||||||||||||
const manualToolsToSort = { | ||||||||||||||||||||||||||||
category1: { | ||||||||||||||||||||||||||||
description: 'Sample Category', | ||||||||||||||||||||||||||||
toolsList: [ | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
title: 'Tool Z', | ||||||||||||||||||||||||||||
filters: { language: 'JavaScript' }, | ||||||||||||||||||||||||||||
links: { repoUrl: 'https://github.com/asyncapi/tool-z' } | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
title: 'Tool A', | ||||||||||||||||||||||||||||
filters: { language: 'Python' }, | ||||||||||||||||||||||||||||
links: { repoUrl: 'https://github.com/asyncapi/tool-a' } | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
await combineTools(manualToolsToSort, {}, toolsPath, tagsPath); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const combinedTools = readJSON(toolsPath); | ||||||||||||||||||||||||||||
const toolTitles = combinedTools.category1.toolsList.map(tool => tool.title); | ||||||||||||||||||||||||||||
expect(toolTitles).toEqual(['Tool A', 'Tool Z']); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it('should log validation errors to console.error', async () => { | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Errors shouldn't be validated via console messages. You should formally return a error using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @vishvamsinh28 Have you worked on this? |
||||||||||||||||||||||||||||
const invalidTool = { title: 'Invalid Tool' }; | ||||||||||||||||||||||||||||
const automatedTools = { | ||||||||||||||||||||||||||||
'category1': { | ||||||||||||||||||||||||||||
description: 'Category 1 Description', | ||||||||||||||||||||||||||||
toolsList: [] | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||
const manualTools = { | ||||||||||||||||||||||||||||
'category1': { | ||||||||||||||||||||||||||||
toolsList: [invalidTool] | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
createToolObject.mockImplementation((tool) => Promise.resolve(tool)); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
await combineTools(automatedTools, manualTools, toolsPath, tagsPath); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const errorCalls = console.error.mock.calls; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
expect(errorCalls[0][0]).toBe('Script is not failing, it is just dropping errors for further investigation'); | ||||||||||||||||||||||||||||
expect(errorCalls[1][0]).toBe('Invalid Invalid Tool .asyncapi-tool file.'); | ||||||||||||||||||||||||||||
expect(errorCalls[2][0]).toBe('Located in manual-tools.json file'); | ||||||||||||||||||||||||||||
expect(errorCalls[3][0]).toEqual(expect.stringContaining('Validation errors:')); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
expect(fs.existsSync(toolsPath)).toBe(true); | ||||||||||||||||||||||||||||
expect(fs.existsSync(tagsPath)).toBe(true); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it('should handle tools with multiple languages, including new ones', async () => { | ||||||||||||||||||||||||||||
const toolWithMultipleLanguages = { | ||||||||||||||||||||||||||||
title: 'Multi-Language Tool', | ||||||||||||||||||||||||||||
filters: { | ||||||||||||||||||||||||||||
language: ['JavaScript', 'Python', 'NewLanguage'], | ||||||||||||||||||||||||||||
technology: ['Node.js'] | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
links: { repoUrl: 'https://github.com/example/multi-language-tool' } | ||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const automatedTools = { | ||||||||||||||||||||||||||||
'category1': { | ||||||||||||||||||||||||||||
description: 'Category 1 Description', | ||||||||||||||||||||||||||||
toolsList: [toolWithMultipleLanguages] | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
await combineTools(automatedTools, {}, toolsPath, tagsPath); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const combinedTools = readJSON(toolsPath); | ||||||||||||||||||||||||||||
const tool = combinedTools.category1.toolsList[0]; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
expect(tool.filters.language).toHaveLength(3); | ||||||||||||||||||||||||||||
expect(tool.filters.language).toContainEqual(expect.objectContaining({ name: 'JavaScript' })); | ||||||||||||||||||||||||||||
expect(tool.filters.language).toContainEqual(expect.objectContaining({ name: 'Python' })); | ||||||||||||||||||||||||||||
expect(tool.filters.language).toContainEqual(expect.objectContaining({ name: 'NewLanguage' })); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const tagsData = readJSON(tagsPath); | ||||||||||||||||||||||||||||
expect(tagsData.languages).toContainEqual(expect.objectContaining({ name: 'NewLanguage' })); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fix this one also |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is using
let
a good option here?