tests: move fixtures to corresponding directories (#3351)
- Refactor: move fixtures to corresponding directories - Delete unused fixtures Resolves: #3328
This commit is contained in:
Родитель
3550297122
Коммит
c1663e3db1
|
@ -1 +1 @@
|
|||
test/_fixtures
|
||||
test/**/**/_fixtures
|
||||
|
|
|
@ -8,6 +8,5 @@
|
|||
/*.log
|
||||
/.vscode
|
||||
/.idea
|
||||
package-lock.json
|
||||
|
||||
/package-lock.json
|
||||
*.pyc
|
||||
|
|
|
@ -9,5 +9,5 @@
|
|||
.cache
|
||||
/*.log
|
||||
package.json
|
||||
test/_fixtures/
|
||||
test/**/**/_fixtures
|
||||
bin/yarn*
|
||||
|
|
|
@ -1,501 +0,0 @@
|
|||
const { URL } = require('url');
|
||||
|
||||
function generateRepo(endpoint, projectKey, repositorySlug) {
|
||||
let projectKeyLower = projectKey.toLowerCase();
|
||||
return {
|
||||
slug: repositorySlug,
|
||||
id: 13076,
|
||||
name: repositorySlug,
|
||||
scmId: 'git',
|
||||
state: 'AVAILABLE',
|
||||
statusMessage: 'Available',
|
||||
forkable: true,
|
||||
project: {
|
||||
key: projectKey,
|
||||
id: 2900,
|
||||
name: `${repositorySlug}'s name`,
|
||||
public: false,
|
||||
type: 'NORMAL',
|
||||
links: {
|
||||
self: [
|
||||
{ href: `https://stash.renovatebot.com/projects/${projectKey}` },
|
||||
],
|
||||
},
|
||||
},
|
||||
public: false,
|
||||
links: {
|
||||
clone: [
|
||||
{
|
||||
href: `${endpoint}/scm/${projectKeyLower}/${repositorySlug}.git`,
|
||||
name: 'http',
|
||||
},
|
||||
{
|
||||
href: `ssh://git@stash.renovatebot.com:7999/${projectKeyLower}/${repositorySlug}.git`,
|
||||
name: 'ssh',
|
||||
},
|
||||
],
|
||||
self: [
|
||||
{
|
||||
href: `${endpoint}/projects/${projectKey}/repos/${repositorySlug}/browse`,
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
function generatePR(endpoint, projectKey, repositorySlug) {
|
||||
return {
|
||||
id: 5,
|
||||
version: 1,
|
||||
title: 'title',
|
||||
description: '* Line 1\r\n* Line 2',
|
||||
state: 'OPEN',
|
||||
open: true,
|
||||
closed: false,
|
||||
createdDate: 1547853840016,
|
||||
updatedDate: 1547853840016,
|
||||
fromRef: {
|
||||
id: 'refs/heads/userName1/pullRequest5',
|
||||
displayId: 'userName1/pullRequest5',
|
||||
latestCommit: '55efc02b2ab13a43a66cf705f5faacfcc6a762b4',
|
||||
// Removed this with the idea it's not needed
|
||||
// repository: {},
|
||||
},
|
||||
toRef: {
|
||||
id: 'refs/heads/master',
|
||||
displayId: 'master',
|
||||
latestCommit: '0d9c7726c3d628b7e28af234595cfd20febdbf8e',
|
||||
// Removed this with the idea it's not needed
|
||||
// repository: {},
|
||||
},
|
||||
locked: false,
|
||||
author: {
|
||||
user: {
|
||||
name: 'userName1',
|
||||
emailAddress: 'userName1@renovatebot.com',
|
||||
id: 144846,
|
||||
displayName: 'Renovate Bot',
|
||||
active: true,
|
||||
slug: 'userName1',
|
||||
type: 'NORMAL',
|
||||
links: {
|
||||
self: [{ href: `${endpoint}/users/userName1` }],
|
||||
},
|
||||
},
|
||||
role: 'AUTHOR',
|
||||
approved: false,
|
||||
status: 'UNAPPROVED',
|
||||
},
|
||||
reviewers: [
|
||||
{
|
||||
user: {
|
||||
name: 'userName2',
|
||||
emailAddress: 'userName2@renovatebot.com',
|
||||
id: 71155,
|
||||
displayName: 'Renovate bot 2',
|
||||
active: true,
|
||||
slug: 'userName2',
|
||||
type: 'NORMAL',
|
||||
links: {
|
||||
self: [{ href: `${endpoint}/users/userName2` }],
|
||||
},
|
||||
},
|
||||
role: 'REVIEWER',
|
||||
approved: false,
|
||||
status: 'UNAPPROVED',
|
||||
},
|
||||
],
|
||||
participants: [],
|
||||
links: {
|
||||
self: [
|
||||
{
|
||||
href: `${endpoint}/projects/${projectKey}/repos/${repositorySlug}/pull-requests/5`,
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
function generateServerResponses(endpoint) {
|
||||
return {
|
||||
baseURL: endpoint,
|
||||
[`${endpoint}/rest/api/1.0/repos?permission=REPO_WRITE&state=AVAILABLE&limit=100`]: {
|
||||
'GET': {
|
||||
size: 1,
|
||||
limit: 100,
|
||||
isLastPage: true,
|
||||
values: [generateRepo(endpoint, 'SOME', 'repo')],
|
||||
start: 0,
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos?limit=100`]: {
|
||||
'GET': {
|
||||
size: 1,
|
||||
limit: 25,
|
||||
isLastPage: true,
|
||||
values: [generateRepo(endpoint, 'SOME', 'repo')],
|
||||
start: 0,
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo`]: {
|
||||
'GET': generateRepo(endpoint, 'SOME', 'repo'),
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/branches/default`]: {
|
||||
'GET': {
|
||||
displayId: 'master',
|
||||
},
|
||||
},
|
||||
// // TODO - I'm not sure there is an issues link to provide
|
||||
// [`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/issues`]: {
|
||||
// 'GET': {
|
||||
// values: [],
|
||||
// },
|
||||
// },
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests`]: {
|
||||
'POST': generatePR(endpoint, 'SOME', 'repo'),
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests?state=ALL&limit=100`]: {
|
||||
'GET': {
|
||||
isLastPage: true,
|
||||
values: [generatePR(endpoint, 'SOME', 'repo')],
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/4`]: {
|
||||
'GET': Promise.reject({ statusCode: 404 }),
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5`]: {
|
||||
'GET': generatePR(endpoint, 'SOME', 'repo'),
|
||||
'PUT': generatePR(endpoint, 'SOME', 'repo'),
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/participants`]: {
|
||||
'POST': {
|
||||
"user": {
|
||||
"name": "jcitizen",
|
||||
"emailAddress": "jane@example.com",
|
||||
"id": 101,
|
||||
"displayName": "Jane Citizen",
|
||||
"active": true,
|
||||
"slug": "jcitizen",
|
||||
"type": "NORMAL"
|
||||
},
|
||||
"lastReviewedCommit": "7549846524f8aed2bd1c0249993ae1bf9d3c9998",
|
||||
"role": "REVIEWER",
|
||||
"approved": false,
|
||||
"status": "UNAPPROVED"
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/diff`]: {
|
||||
'GET': {
|
||||
fromHash: 'afdcf5e55dfce85055a146783434b0e2a81722c1',
|
||||
toHash: '590e661bb8c189b5a4bee115b475c9f14bf112bd',
|
||||
contextLines: 10,
|
||||
whitespace: 'SHOW',
|
||||
diffs: [
|
||||
{
|
||||
source: {
|
||||
components: ['package.json'],
|
||||
parent: '',
|
||||
name: 'package.json',
|
||||
extension: 'json',
|
||||
toString: 'package.json',
|
||||
},
|
||||
destination: {
|
||||
components: ['package.json'],
|
||||
parent: '',
|
||||
name: 'package.json',
|
||||
extension: 'json',
|
||||
toString: 'package.json',
|
||||
},
|
||||
hunks: [
|
||||
{
|
||||
sourceLine: 47,
|
||||
sourceSpan: 18,
|
||||
destinationLine: 47,
|
||||
destinationSpan: 18,
|
||||
segments: [
|
||||
{
|
||||
type: 'CONTEXT',
|
||||
lines: [
|
||||
{
|
||||
source: 47,
|
||||
destination: 47,
|
||||
line: ' "webpack": "4.28.0"',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 48,
|
||||
destination: 48,
|
||||
line: ' },',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 49,
|
||||
destination: 49,
|
||||
line: ' "license": "MIT",',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 50,
|
||||
destination: 50,
|
||||
line: ' "main": "dist/index.js",',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 51,
|
||||
destination: 51,
|
||||
line: ' "module": "dist/index.es.js",',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 52,
|
||||
destination: 52,
|
||||
line: ' "name": "removed-for-privacy",',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 53,
|
||||
destination: 53,
|
||||
line: ' "publishConfig": {',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 54,
|
||||
destination: 54,
|
||||
line: ' "registry": "https://npm.renovatebot.com/"',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 55,
|
||||
destination: 55,
|
||||
line: ' },',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 56,
|
||||
destination: 56,
|
||||
line: ' "scripts": {',
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
type: 'REMOVED',
|
||||
lines: [
|
||||
{
|
||||
source: 57,
|
||||
destination: 57,
|
||||
line:
|
||||
' "build": "TS_NODE_PROJECT=\\"tsconfig.webpack.json\\" webpack --config=webpack.config.prod.ts",',
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
type: 'ADDED',
|
||||
lines: [
|
||||
{
|
||||
source: 58,
|
||||
destination: 57,
|
||||
line:
|
||||
' "build": "npm run env TS_NODE_PROJECT=\\"tsconfig.webpack.json\\" -- && webpack --config=webpack.config.prod.ts",',
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
type: 'CONTEXT',
|
||||
lines: [
|
||||
{
|
||||
source: 58,
|
||||
destination: 58,
|
||||
line: ' "clean": "rimraf dist",',
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
type: 'REMOVED',
|
||||
lines: [
|
||||
{
|
||||
source: 59,
|
||||
destination: 59,
|
||||
line:
|
||||
' "dev": "TS_NODE_PROJECT=\\"tsconfig.webpack.json\\" webpack --config=webpack.config.ts",',
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
type: 'ADDED',
|
||||
lines: [
|
||||
{
|
||||
source: 60,
|
||||
destination: 59,
|
||||
line:
|
||||
' "dev": "npm run env TS_NODE_PROJECT=\\"tsconfig.webpack.json\\" -- && webpack --config=webpack.config.ts",',
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
type: 'CONTEXT',
|
||||
lines: [
|
||||
{
|
||||
source: 60,
|
||||
destination: 60,
|
||||
line: ' "prepare": "npm run clean && npm run build",',
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
type: 'REMOVED',
|
||||
lines: [
|
||||
{
|
||||
source: 61,
|
||||
destination: 61,
|
||||
line:
|
||||
' "start": "TS_NODE_PROJECT=\\"tsconfig.webpack.json\\" webpack-dev-server --env.NODE_ENV=development --env.buildenv=stage"',
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
type: 'ADDED',
|
||||
lines: [
|
||||
{
|
||||
source: 62,
|
||||
destination: 61,
|
||||
line:
|
||||
' "start": "npm run env TS_NODE_PROJECT=\\"tsconfig.webpack.json\\" -- && webpack-dev-server --env.NODE_ENV=development --env.buildenv=stage"',
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
type: 'CONTEXT',
|
||||
lines: [
|
||||
{
|
||||
source: 62,
|
||||
destination: 62,
|
||||
line: ' },',
|
||||
truncated: false,
|
||||
},
|
||||
{
|
||||
source: 63,
|
||||
destination: 63,
|
||||
line: ' "version": "0.0.1"',
|
||||
truncated: false,
|
||||
},
|
||||
{ source: 64, destination: 64, line: '}', truncated: false },
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
],
|
||||
truncated: false,
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/commits`]: {
|
||||
'GET': {
|
||||
values: [{}],
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/merge`]: {
|
||||
'GET': { conflicted: false },
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/merge?version=1`]: {
|
||||
'POST': {
|
||||
...generatePR(endpoint, 'SOME', 'repo'),
|
||||
...{
|
||||
"state": "MERGED",
|
||||
"open": false,
|
||||
"closed": true,
|
||||
"createdDate": 1547853840016,
|
||||
"updatedDate": 1547853840016,
|
||||
"closedDate": 1547853840017,
|
||||
},
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/activities?limit=100`]: {
|
||||
'GET': {
|
||||
isLastPage: false,
|
||||
nextPageStart: 1,
|
||||
values: [
|
||||
{ action: 'COMMENTED', commentAction: 'ADDED', comment: { id: 21, text: '### some-subject\n\nblablabla' } },
|
||||
{ action: 'COMMENTED', commentAction: 'ADDED', comment: { id: 22, text: '!merge' } },
|
||||
],
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/activities?limit=100&start=1`]: {
|
||||
'GET': {
|
||||
isLastPage: true,
|
||||
values: [
|
||||
{ action: 'OTHER' },
|
||||
],
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/comments`]: {
|
||||
'POST': {},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/comments/21`]: {
|
||||
'GET': {
|
||||
version: 1
|
||||
},
|
||||
'PUT': {},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/comments/22`]: {
|
||||
'GET': {
|
||||
version: 1
|
||||
},
|
||||
'PUT': {},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/repo/pull-requests/5/comments/21?version=1`]: {
|
||||
'DELETE': {},
|
||||
},
|
||||
[`${endpoint}/rest/api/1.0/projects/SOME/repos/branches`]: {
|
||||
'GET': {
|
||||
isLastPage: true,
|
||||
limit: 25,
|
||||
size: 2,
|
||||
start: 0,
|
||||
values: [
|
||||
{ displayId: 'master', id: 'refs/heads/master' },
|
||||
{ displayId: 'branch', id: 'refs/heads/branch' },
|
||||
{ displayId: 'renovate/branch', id: 'refs/heads/renovate/branch' },
|
||||
{ displayId: 'renovate/upgrade', id: 'refs/heads/renovate/upgrade' },
|
||||
],
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/build-status/1.0/commits/0d9c7726c3d628b7e28af234595cfd20febdbf8e?limit=100`]: {
|
||||
'GET': {
|
||||
isLastPage: true,
|
||||
values: [
|
||||
{ key: 'context-1', state: 'SUCCESSFUL' },
|
||||
],
|
||||
},
|
||||
},
|
||||
[`${endpoint}/rest/build-status/1.0/commits/0d9c7726c3d628b7e28af234595cfd20febdbf8e`]: {
|
||||
'POST': {}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
'endpoint with no path': generateServerResponses('https://stash.renovatebot.com'),
|
||||
'endpoint with path': generateServerResponses('https://stash.renovatebot.com/vcs'),
|
||||
};
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,5 +0,0 @@
|
|||
const defaultConfig = require('../../../lib/config/defaults').getConfig();
|
||||
|
||||
module.exports = {
|
||||
...defaultConfig,
|
||||
};
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -1,133 +0,0 @@
|
|||
{
|
||||
"docs_html_url": null,
|
||||
"downloads": {
|
||||
"all": 7801231,
|
||||
"day": 4550,
|
||||
"recent": 1186862,
|
||||
"week": 107546
|
||||
},
|
||||
"html_url": "https://hex.pm/packages/certifi",
|
||||
"inserted_at": "2015-09-10T13:58:43.376194Z",
|
||||
"meta": {
|
||||
"description": "CA bundle adapted from Mozilla by https://certifi.io",
|
||||
"licenses": [
|
||||
"BSD"
|
||||
],
|
||||
"links": {
|
||||
"Github": "https://github.com/certifi/erlang-certifi"
|
||||
},
|
||||
"maintainers": [
|
||||
"Benoit Chesneau"
|
||||
]
|
||||
},
|
||||
"name": "certifi",
|
||||
"owners": [
|
||||
{
|
||||
"email": "bchesneau@gmail.com",
|
||||
"url": "https://hex.pm/api/users/benoitc",
|
||||
"username": "benoitc"
|
||||
}
|
||||
],
|
||||
"releases": [
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.5.1",
|
||||
"version": "2.5.1"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.4.2",
|
||||
"version": "2.4.2"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.4.1",
|
||||
"version": "2.4.1"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.3.1",
|
||||
"version": "2.3.1"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.3.0",
|
||||
"version": "2.3.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.2.0",
|
||||
"version": "2.2.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.1.0",
|
||||
"version": "2.1.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.0.0",
|
||||
"version": "2.0.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/1.2.1",
|
||||
"version": "1.2.1"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/1.2.0",
|
||||
"version": "1.2.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/1.1.0",
|
||||
"version": "1.1.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/1.0.0",
|
||||
"version": "1.0.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.7.0",
|
||||
"version": "0.7.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.6.0",
|
||||
"version": "0.6.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.5.0",
|
||||
"version": "0.5.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.4.0",
|
||||
"version": "0.4.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.3.0",
|
||||
"version": "0.3.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.2.0",
|
||||
"version": "0.2.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.1.1",
|
||||
"version": "0.1.1"
|
||||
}
|
||||
],
|
||||
"repository": "hexpm",
|
||||
"retirements": {
|
||||
},
|
||||
"updated_at": "2019-01-28T20:35:23.869888Z",
|
||||
"url": "https://hex.pm/api/packages/certifi"
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
-----BEGIN RSA PRIVATE KEY-----
|
||||
MIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ/DgYSF6vUp
|
||||
wmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1/3j+skZ6UtW+5u09lHNsj6tQ5
|
||||
1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh
|
||||
3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2
|
||||
pIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55/mbSYxECQQDeAw6fiIQX
|
||||
GukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd/aNzQ/W9WaI+NRfcxUJrmfPwIGm63il
|
||||
AkEAxCL5HQb2bQr4ByorcMWm/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3/9s5p+sqGxOlF
|
||||
L0NDt4SkosjgGwJAFklyR1uZ/wPJjj611cdBcztlPdqoxssQGnh85BzCj/u3WqBpE2vjvyyvyI5k
|
||||
X6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu/fhrT8ebHkTz2epl
|
||||
U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ
|
||||
37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0=
|
||||
-----END RSA PRIVATE KEY-----
|
|
@ -1,127 +0,0 @@
|
|||
{
|
||||
"packages": {
|
||||
"wpackagist-plugin/1beyt": {
|
||||
"1.0": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.0",
|
||||
"version_normalized": "1.0.0.0",
|
||||
"uid": 590,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.0.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.0"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"1.1": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.1",
|
||||
"version_normalized": "1.1.0.0",
|
||||
"uid": 591,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.1.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.1"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"1.4": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.4",
|
||||
"version_normalized": "1.4.0.0",
|
||||
"uid": 592,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.4.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.4"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"1.5": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.5",
|
||||
"version_normalized": "1.5.0.0",
|
||||
"uid": 593,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.5.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.5"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"1.5.1": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.5.1",
|
||||
"version_normalized": "1.5.1.0",
|
||||
"uid": 594,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.5.1.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.5.1"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"dev-trunk": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "dev-trunk",
|
||||
"version_normalized": "9999999-dev",
|
||||
"uid": 595,
|
||||
"time": "2018-09-03 21:31:30",
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.zip?timestamp=1536010290"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "trunk"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,5 +1,5 @@
|
|||
const cli = require('../../lib/config/cli.js');
|
||||
const getArgv = require('../_fixtures/config/argv');
|
||||
const getArgv = require('./config/_fixtures/argv');
|
||||
|
||||
describe('config/cli', () => {
|
||||
let argv;
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
const defaultConfig = require('../../../../lib/config/defaults').getConfig();
|
||||
|
||||
module.exports = {
|
||||
...defaultConfig,
|
||||
};
|
|
@ -1,7 +1,7 @@
|
|||
const fs = require('fs');
|
||||
const { decryptConfig } = require('../../lib/config/decrypt.js');
|
||||
|
||||
const privateKey = fs.readFileSync('test/_fixtures/keys/private.pem');
|
||||
const privateKey = fs.readFileSync('test/config/keys/_fixtures/private.pem');
|
||||
|
||||
describe('config/decrypt', () => {
|
||||
describe('decryptConfig()', () => {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const path = require('path');
|
||||
const file = require('../../lib/config/file.js');
|
||||
const customConfig = require('../_fixtures/config/file');
|
||||
const customConfig = require('./config/_fixtures/file');
|
||||
|
||||
describe('config/file', () => {
|
||||
describe('.getConfig()', () => {
|
||||
|
@ -10,16 +10,13 @@ describe('config/file', () => {
|
|||
);
|
||||
});
|
||||
it('parses custom config file', () => {
|
||||
const configFile = path.resolve(__dirname, '../_fixtures/config/file.js');
|
||||
const configFile = path.resolve(__dirname, './config/_fixtures/file.js');
|
||||
expect(file.getConfig({ RENOVATE_CONFIG_FILE: configFile })).toEqual(
|
||||
customConfig
|
||||
);
|
||||
});
|
||||
it('migrates', () => {
|
||||
const configFile = path.resolve(
|
||||
__dirname,
|
||||
'../_fixtures/config/file2.js'
|
||||
);
|
||||
const configFile = path.resolve(__dirname, './config/_fixtures/file2.js');
|
||||
const res = file.getConfig({ RENOVATE_CONFIG_FILE: configFile });
|
||||
expect(res).toMatchSnapshot();
|
||||
expect(res.rangeStrategy).toEqual('bump');
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const argv = require('../_fixtures/config/argv');
|
||||
const argv = require('./config/_fixtures/argv');
|
||||
const defaultConfig = require('../../lib/config/defaults').getConfig();
|
||||
const npm = require('../../lib/datasource/npm');
|
||||
const presetDefaults = require('../_fixtures/npm/renovate-config-default');
|
||||
const presetDefaults = require('./npm/_fixtures/renovate-config-default');
|
||||
|
||||
npm.getPkgReleases = jest.fn(() => ({
|
||||
'renovate-config':
|
||||
|
|
|
@ -3,7 +3,7 @@ const { migrateAndValidate } = require('../../lib/config/migrate-validate');
|
|||
let config;
|
||||
beforeEach(() => {
|
||||
jest.resetAllMocks();
|
||||
config = { ...require('../_fixtures/config') };
|
||||
config = { ...require('./config/_fixtures') };
|
||||
});
|
||||
|
||||
describe('config/migrate-validate', () => {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
const npm = require('../../lib/datasource/npm');
|
||||
const presets = require('../../lib/config/presets');
|
||||
const presetDefaults = require('../_fixtures/npm/renovate-config-default');
|
||||
const presetPackages = require('../_fixtures/npm/renovate-config-packages');
|
||||
const presetGroup = require('../_fixtures/npm/renovate-config-group');
|
||||
const presetMonorepo = require('../_fixtures/npm/renovate-config-monorepo');
|
||||
const presetIkatyang = require('../_fixtures/npm/renovate-config-ikatyang');
|
||||
const presetDefaults = require('./npm/_fixtures/renovate-config-default');
|
||||
const presetPackages = require('./npm/_fixtures/renovate-config-packages');
|
||||
const presetGroup = require('./npm/_fixtures/renovate-config-group');
|
||||
const presetMonorepo = require('./npm/_fixtures/renovate-config-monorepo');
|
||||
const presetIkatyang = require('./npm/_fixtures/renovate-config-ikatyang');
|
||||
|
||||
npm.getPreset = jest.fn((dep, presetName) => {
|
||||
if (dep === 'renovate-config-default') {
|
||||
|
|
|
@ -3,9 +3,12 @@ const fs = require('fs');
|
|||
const got = require('../../lib/util/got');
|
||||
const { getPkgReleases } = require('../../lib/datasource/cargo');
|
||||
|
||||
let res1 = fs.readFileSync('test/_fixtures/cargo/libc.json', 'utf8');
|
||||
let res1 = fs.readFileSync('test/datasource/cargo/_fixtures/libc.json', 'utf8');
|
||||
res1 = JSON.parse(res1);
|
||||
let res2 = fs.readFileSync('test/_fixtures/cargo/amethyst.json', 'utf8');
|
||||
let res2 = fs.readFileSync(
|
||||
'test/datasource/cargo/_fixtures/amethyst.json',
|
||||
'utf8'
|
||||
);
|
||||
res2 = JSON.parse(res2);
|
||||
|
||||
jest.mock('../../lib/util/got');
|
||||
|
|
|
@ -0,0 +1,515 @@
|
|||
{
|
||||
"crate": {
|
||||
"id": "amethyst",
|
||||
"name": "amethyst",
|
||||
"updated_at": "2018-10-23T04:59:52.036066+00:00",
|
||||
"versions": [
|
||||
114081,
|
||||
102536,
|
||||
93381,
|
||||
75864,
|
||||
64007,
|
||||
63921,
|
||||
55723,
|
||||
47311,
|
||||
45120,
|
||||
44923,
|
||||
33265,
|
||||
24782,
|
||||
21411,
|
||||
20555,
|
||||
20456,
|
||||
20314,
|
||||
20192
|
||||
],
|
||||
"keywords": ["amethyst", "game", "engine", "sdk"],
|
||||
"categories": ["game-engines"],
|
||||
"badges": [
|
||||
{
|
||||
"badge_type": "appveyor",
|
||||
"attributes": {
|
||||
"repository": "amethyst/amethyst",
|
||||
"service": null,
|
||||
"branch": "master",
|
||||
"id": null,
|
||||
"project_name": null
|
||||
}
|
||||
},
|
||||
{
|
||||
"badge_type": "travis-ci",
|
||||
"attributes": { "repository": "amethyst/amethyst", "branch": "master" }
|
||||
}
|
||||
],
|
||||
"created_at": "2016-01-04T03:42:04.120616+00:00",
|
||||
"downloads": 10368,
|
||||
"recent_downloads": 3510,
|
||||
"max_version": "0.9.0",
|
||||
"description": "Data-oriented game engine written in Rust",
|
||||
"homepage": "https://www.amethyst.rs/",
|
||||
"documentation": "https://www.amethyst.rs/doc/master/doc/amethyst",
|
||||
"repository": "https://github.com/amethyst/amethyst",
|
||||
"links": {
|
||||
"version_downloads": "/api/v1/crates/amethyst/downloads",
|
||||
"versions": null,
|
||||
"owners": "/api/v1/crates/amethyst/owners",
|
||||
"owner_team": "/api/v1/crates/amethyst/owner_team",
|
||||
"owner_user": "/api/v1/crates/amethyst/owner_user",
|
||||
"reverse_dependencies": "/api/v1/crates/amethyst/reverse_dependencies"
|
||||
},
|
||||
"exact_match": false
|
||||
},
|
||||
"versions": [
|
||||
{
|
||||
"id": 114081,
|
||||
"crate": "amethyst",
|
||||
"num": "0.9.0",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.9.0/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.9.0/readme",
|
||||
"updated_at": "2018-10-23T04:59:52.036066+00:00",
|
||||
"created_at": "2018-10-23T04:59:52.036066+00:00",
|
||||
"downloads": 2037,
|
||||
"features": {
|
||||
"json": ["amethyst_assets/json"],
|
||||
"nightly": [
|
||||
"amethyst_animation/nightly",
|
||||
"amethyst_assets/nightly",
|
||||
"amethyst_audio/nightly",
|
||||
"amethyst_config/nightly",
|
||||
"amethyst_core/nightly",
|
||||
"amethyst_controls/nightly",
|
||||
"amethyst_network/nightly",
|
||||
"amethyst_renderer/nightly",
|
||||
"amethyst_input/nightly",
|
||||
"amethyst_ui/nightly",
|
||||
"amethyst_utils/nightly"
|
||||
],
|
||||
"profiler": [
|
||||
"thread_profiler",
|
||||
"thread_profiler/thread_profiler",
|
||||
"amethyst_animation/profiler",
|
||||
"amethyst_assets/profiler",
|
||||
"amethyst_audio/profiler",
|
||||
"amethyst_config/profiler",
|
||||
"amethyst_core/profiler",
|
||||
"amethyst_controls/profiler",
|
||||
"amethyst_input/profiler",
|
||||
"amethyst_locale/profiler",
|
||||
"amethyst_renderer/profiler",
|
||||
"amethyst_ui/profiler",
|
||||
"amethyst_utils/profiler"
|
||||
],
|
||||
"saveload": ["amethyst_core/saveload"],
|
||||
"sdl_controller": ["amethyst_input/sdl_controller"]
|
||||
},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.9.0/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.9.0/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.9.0/authors"
|
||||
},
|
||||
"crate_size": 41178
|
||||
},
|
||||
{
|
||||
"id": 102536,
|
||||
"crate": "amethyst",
|
||||
"num": "0.8.0",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.8.0/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.8.0/readme",
|
||||
"updated_at": "2018-08-05T23:35:13.513554+00:00",
|
||||
"created_at": "2018-08-05T23:35:13.513554+00:00",
|
||||
"downloads": 1694,
|
||||
"features": {
|
||||
"nightly": [
|
||||
"amethyst_animation/nightly",
|
||||
"amethyst_assets/nightly",
|
||||
"amethyst_audio/nightly",
|
||||
"amethyst_config/nightly",
|
||||
"amethyst_core/nightly",
|
||||
"amethyst_controls/nightly",
|
||||
"amethyst_renderer/nightly",
|
||||
"amethyst_input/nightly",
|
||||
"amethyst_ui/nightly",
|
||||
"amethyst_utils/nightly"
|
||||
],
|
||||
"profiler": [
|
||||
"thread_profiler",
|
||||
"thread_profiler/thread_profiler",
|
||||
"amethyst_animation/profiler",
|
||||
"amethyst_assets/profiler",
|
||||
"amethyst_audio/profiler",
|
||||
"amethyst_config/profiler",
|
||||
"amethyst_core/profiler",
|
||||
"amethyst_controls/profiler",
|
||||
"amethyst_input/profiler",
|
||||
"amethyst_locale/profiler",
|
||||
"amethyst_renderer/profiler",
|
||||
"amethyst_ui/profiler",
|
||||
"amethyst_utils/profiler"
|
||||
],
|
||||
"sdl_controller": ["amethyst_input/sdl_controller"]
|
||||
},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.8.0/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.8.0/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.8.0/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 93381,
|
||||
"crate": "amethyst",
|
||||
"num": "0.7.0",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.7.0/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.7.0/readme",
|
||||
"updated_at": "2018-05-19T05:26:43.556173+00:00",
|
||||
"created_at": "2018-05-19T05:26:43.556173+00:00",
|
||||
"downloads": 779,
|
||||
"features": {
|
||||
"nightly": [
|
||||
"amethyst_animation/nightly",
|
||||
"amethyst_assets/nightly",
|
||||
"amethyst_audio/nightly",
|
||||
"amethyst_config/nightly",
|
||||
"amethyst_core/nightly",
|
||||
"amethyst_controls/nightly",
|
||||
"amethyst_renderer/nightly",
|
||||
"amethyst_input/nightly",
|
||||
"amethyst_ui/nightly",
|
||||
"amethyst_utils/nightly"
|
||||
],
|
||||
"profiler": [
|
||||
"thread_profiler",
|
||||
"thread_profiler/thread_profiler",
|
||||
"amethyst_animation/profiler",
|
||||
"amethyst_assets/profiler",
|
||||
"amethyst_audio/profiler",
|
||||
"amethyst_config/profiler",
|
||||
"amethyst_core/profiler",
|
||||
"amethyst_controls/profiler",
|
||||
"amethyst_renderer/profiler",
|
||||
"amethyst_input/profiler",
|
||||
"amethyst_ui/profiler",
|
||||
"amethyst_utils/profiler"
|
||||
]
|
||||
},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.7.0/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.7.0/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.7.0/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 75864,
|
||||
"crate": "amethyst",
|
||||
"num": "0.6.0",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.6.0/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.6.0/readme",
|
||||
"updated_at": "2017-12-30T02:37:56.438368+00:00",
|
||||
"created_at": "2017-12-30T02:37:56.438368+00:00",
|
||||
"downloads": 709,
|
||||
"features": { "profiler": ["thread_profiler/thread_profiler"] },
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.6.0/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.6.0/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.6.0/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 64007,
|
||||
"crate": "amethyst",
|
||||
"num": "0.5.1",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.5.1/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.5.1/readme",
|
||||
"updated_at": "2017-11-30T02:44:34.228865+00:00",
|
||||
"created_at": "2017-08-30T16:08:02.076925+00:00",
|
||||
"downloads": 511,
|
||||
"features": { "profiler": ["thread_profiler/thread_profiler"] },
|
||||
"yanked": false,
|
||||
"license": "MIT OR Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.5.1/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.5.1/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.5.1/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 63921,
|
||||
"crate": "amethyst",
|
||||
"num": "0.5.0",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.5.0/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.5.0/readme",
|
||||
"updated_at": "2017-11-30T03:43:52.655220+00:00",
|
||||
"created_at": "2017-08-29T17:36:45.542505+00:00",
|
||||
"downloads": 153,
|
||||
"features": { "profiler": ["thread_profiler/thread_profiler"] },
|
||||
"yanked": false,
|
||||
"license": "MIT OR Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.5.0/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.5.0/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.5.0/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 55723,
|
||||
"crate": "amethyst",
|
||||
"num": "0.4.3",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.4.3/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.4.3/readme",
|
||||
"updated_at": "2017-11-30T03:58:14.298921+00:00",
|
||||
"created_at": "2017-06-03T23:39:08.055273+00:00",
|
||||
"downloads": 409,
|
||||
"features": {
|
||||
"default": ["opengl"],
|
||||
"direct3d": [],
|
||||
"opengl": [],
|
||||
"profiler": ["thread_profiler/thread_profiler"]
|
||||
},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.4.3/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.4.3/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.4.3/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 47311,
|
||||
"crate": "amethyst",
|
||||
"num": "0.4.2",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.4.2/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.4.2/readme",
|
||||
"updated_at": "2017-11-30T02:28:10.733064+00:00",
|
||||
"created_at": "2017-03-07T22:35:26.137229+00:00",
|
||||
"downloads": 423,
|
||||
"features": { "default": ["opengl"], "direct3d": [], "opengl": [] },
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.4.2/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.4.2/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.4.2/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 45120,
|
||||
"crate": "amethyst",
|
||||
"num": "0.4.1",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.4.1/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.4.1/readme",
|
||||
"updated_at": "2017-11-30T02:46:19.858552+00:00",
|
||||
"created_at": "2017-02-10T05:34:28.151911+00:00",
|
||||
"downloads": 292,
|
||||
"features": { "default": ["opengl"], "direct3d": [], "opengl": [] },
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.4.1/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.4.1/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.4.1/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 44923,
|
||||
"crate": "amethyst",
|
||||
"num": "0.4.0",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.4.0/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.4.0/readme",
|
||||
"updated_at": "2017-11-30T02:31:06.671385+00:00",
|
||||
"created_at": "2017-02-07T07:30:59.355103+00:00",
|
||||
"downloads": 205,
|
||||
"features": { "default": ["opengl"], "direct3d": [], "opengl": [] },
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.4.0/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.4.0/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.4.0/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 33265,
|
||||
"crate": "amethyst",
|
||||
"num": "0.3.1",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.3.1/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.3.1/readme",
|
||||
"updated_at": "2017-11-30T04:18:49.922837+00:00",
|
||||
"created_at": "2016-09-07T17:49:01.070242+00:00",
|
||||
"downloads": 655,
|
||||
"features": {},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.3.1/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.3.1/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.3.1/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 24782,
|
||||
"crate": "amethyst",
|
||||
"num": "0.3.0",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.3.0/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.3.0/readme",
|
||||
"updated_at": "2017-11-30T04:18:49.834846+00:00",
|
||||
"created_at": "2016-03-31T07:12:24.417369+00:00",
|
||||
"downloads": 634,
|
||||
"features": {},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.3.0/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.3.0/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.3.0/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 21411,
|
||||
"crate": "amethyst",
|
||||
"num": "0.2.1",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.2.1/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.2.1/readme",
|
||||
"updated_at": "2017-11-30T04:18:49.721035+00:00",
|
||||
"created_at": "2016-01-27T22:12:58.346004+00:00",
|
||||
"downloads": 581,
|
||||
"features": {},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.2.1/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.2.1/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.2.1/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 20555,
|
||||
"crate": "amethyst",
|
||||
"num": "0.1.4",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.1.4/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.1.4/readme",
|
||||
"updated_at": "2017-11-30T04:18:49.690252+00:00",
|
||||
"created_at": "2016-01-11T04:30:07.247905+00:00",
|
||||
"downloads": 407,
|
||||
"features": {},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.1.4/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.1.4/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.1.4/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 20456,
|
||||
"crate": "amethyst",
|
||||
"num": "0.1.3",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.1.3/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.1.3/readme",
|
||||
"updated_at": "2017-11-30T04:18:49.685229+00:00",
|
||||
"created_at": "2016-01-09T23:30:24.282179+00:00",
|
||||
"downloads": 288,
|
||||
"features": {},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.1.3/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.1.3/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.1.3/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 20314,
|
||||
"crate": "amethyst",
|
||||
"num": "0.1.1",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.1.1/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.1.1/readme",
|
||||
"updated_at": "2017-11-30T04:18:49.672273+00:00",
|
||||
"created_at": "2016-01-07T03:51:25.730482+00:00",
|
||||
"downloads": 298,
|
||||
"features": {},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.1.1/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.1.1/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.1.1/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
},
|
||||
{
|
||||
"id": 20192,
|
||||
"crate": "amethyst",
|
||||
"num": "0.1.0",
|
||||
"dl_path": "/api/v1/crates/amethyst/0.1.0/download",
|
||||
"readme_path": "/api/v1/crates/amethyst/0.1.0/readme",
|
||||
"updated_at": "2017-11-30T04:18:49.663242+00:00",
|
||||
"created_at": "2016-01-04T03:42:04.120616+00:00",
|
||||
"downloads": 293,
|
||||
"features": {},
|
||||
"yanked": false,
|
||||
"license": "MIT/Apache-2.0",
|
||||
"links": {
|
||||
"dependencies": "/api/v1/crates/amethyst/0.1.0/dependencies",
|
||||
"version_downloads": "/api/v1/crates/amethyst/0.1.0/downloads",
|
||||
"authors": "/api/v1/crates/amethyst/0.1.0/authors"
|
||||
},
|
||||
"crate_size": null
|
||||
}
|
||||
],
|
||||
"keywords": [
|
||||
{
|
||||
"id": "amethyst",
|
||||
"keyword": "amethyst",
|
||||
"created_at": "2016-01-04T03:42:04.120616+00:00",
|
||||
"crates_cnt": 15
|
||||
},
|
||||
{
|
||||
"id": "game",
|
||||
"keyword": "game",
|
||||
"created_at": "2014-11-21T04:39:31.646099+00:00",
|
||||
"crates_cnt": 141
|
||||
},
|
||||
{
|
||||
"id": "engine",
|
||||
"keyword": "engine",
|
||||
"created_at": "2014-12-21T17:42:48.133982+00:00",
|
||||
"crates_cnt": 47
|
||||
},
|
||||
{
|
||||
"id": "sdk",
|
||||
"keyword": "sdk",
|
||||
"created_at": "2015-06-07T13:11:08.891856+00:00",
|
||||
"crates_cnt": 16
|
||||
}
|
||||
],
|
||||
"categories": [
|
||||
{
|
||||
"id": "game-engines",
|
||||
"category": "Game engines",
|
||||
"slug": "game-engines",
|
||||
"description": "Crates for creating games.",
|
||||
"created_at": "2017-01-17T19:13:05.112025+00:00",
|
||||
"crates_cnt": 105
|
||||
}
|
||||
]
|
||||
}
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -4,7 +4,9 @@ const datasource = require('../../lib/datasource');
|
|||
|
||||
jest.mock('../../lib/util/got');
|
||||
|
||||
const allResponse = fs.readFileSync('test/_fixtures/gradle-wrapper/all.json');
|
||||
const allResponse = fs.readFileSync(
|
||||
'test/datasource/gradle-wrapper/_fixtures/all.json'
|
||||
);
|
||||
|
||||
let config = {};
|
||||
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -1,9 +1,7 @@
|
|||
[
|
||||
{
|
||||
"project": "project1",
|
||||
"repositories": [
|
||||
"https://repo.maven.apache.org/maven2/"
|
||||
],
|
||||
"repositories": ["https://repo.maven.apache.org/maven2/"],
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "spring-boot-starter-jersey",
|
|
@ -3,7 +3,10 @@ const got = require('../../lib/util/got');
|
|||
const hostRules = require('../../lib/util/host-rules');
|
||||
const { getPkgReleases } = require('../../lib/datasource/hex');
|
||||
|
||||
let res1 = fs.readFileSync('test/_fixtures/hex/certifi.json', 'utf8');
|
||||
let res1 = fs.readFileSync(
|
||||
'test/datasource/hex/_fixtures/certifi.json',
|
||||
'utf8'
|
||||
);
|
||||
res1 = JSON.parse(res1);
|
||||
|
||||
jest.mock('../../lib/util/got');
|
||||
|
|
|
@ -0,0 +1,128 @@
|
|||
{
|
||||
"docs_html_url": null,
|
||||
"downloads": {
|
||||
"all": 7801231,
|
||||
"day": 4550,
|
||||
"recent": 1186862,
|
||||
"week": 107546
|
||||
},
|
||||
"html_url": "https://hex.pm/packages/certifi",
|
||||
"inserted_at": "2015-09-10T13:58:43.376194Z",
|
||||
"meta": {
|
||||
"description": "CA bundle adapted from Mozilla by https://certifi.io",
|
||||
"licenses": ["BSD"],
|
||||
"links": {
|
||||
"Github": "https://github.com/certifi/erlang-certifi"
|
||||
},
|
||||
"maintainers": ["Benoit Chesneau"]
|
||||
},
|
||||
"name": "certifi",
|
||||
"owners": [
|
||||
{
|
||||
"email": "bchesneau@gmail.com",
|
||||
"url": "https://hex.pm/api/users/benoitc",
|
||||
"username": "benoitc"
|
||||
}
|
||||
],
|
||||
"releases": [
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.5.1",
|
||||
"version": "2.5.1"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.4.2",
|
||||
"version": "2.4.2"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.4.1",
|
||||
"version": "2.4.1"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.3.1",
|
||||
"version": "2.3.1"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.3.0",
|
||||
"version": "2.3.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.2.0",
|
||||
"version": "2.2.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.1.0",
|
||||
"version": "2.1.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/2.0.0",
|
||||
"version": "2.0.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/1.2.1",
|
||||
"version": "1.2.1"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/1.2.0",
|
||||
"version": "1.2.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/1.1.0",
|
||||
"version": "1.1.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/1.0.0",
|
||||
"version": "1.0.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.7.0",
|
||||
"version": "0.7.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.6.0",
|
||||
"version": "0.6.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.5.0",
|
||||
"version": "0.5.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.4.0",
|
||||
"version": "0.4.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.3.0",
|
||||
"version": "0.3.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.2.0",
|
||||
"version": "0.2.0"
|
||||
},
|
||||
{
|
||||
"has_docs": false,
|
||||
"url": "https://hex.pm/api/packages/certifi/releases/0.1.1",
|
||||
"version": "0.1.1"
|
||||
}
|
||||
],
|
||||
"repository": "hexpm",
|
||||
"retirements": {},
|
||||
"updated_at": "2019-01-28T20:35:23.869888Z",
|
||||
"url": "https://hex.pm/api/packages/certifi"
|
||||
}
|
|
@ -17,12 +17,12 @@ const MYSQL_VERSIONS = [
|
|||
];
|
||||
|
||||
const MYSQL_MAVEN_METADATA = fs.readFileSync(
|
||||
'test/_fixtures/gradle/maven/repo1.maven.org/maven2/mysql/mysql-connector-java/maven-metadata.xml',
|
||||
'test/datasource/gradle/_fixtures/maven/repo1.maven.org/maven2/mysql/mysql-connector-java/maven-metadata.xml',
|
||||
'utf8'
|
||||
);
|
||||
|
||||
const MYSQL_MAVEN_MYSQL_POM = fs.readFileSync(
|
||||
'test/_fixtures/gradle/maven/repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.12/mysql-connector-java-8.0.12.pom',
|
||||
'test/datasource/gradle/_fixtures/maven/repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.12/mysql-connector-java-8.0.12.pom',
|
||||
'utf8'
|
||||
);
|
||||
|
||||
|
@ -63,7 +63,7 @@ describe('datasource/maven', () => {
|
|||
...config,
|
||||
lookupName: 'unknown:unknown',
|
||||
registryUrls: [
|
||||
'file://test/_fixtures/gradle/maven/repo1.maven.org/maven2/',
|
||||
'file://test/datasource/gradle/_fixtures/maven/repo1.maven.org/maven2/',
|
||||
],
|
||||
});
|
||||
expect(releases).toBeNull();
|
||||
|
@ -74,8 +74,8 @@ describe('datasource/maven', () => {
|
|||
...config,
|
||||
lookupName: 'org.hamcrest:hamcrest-core',
|
||||
registryUrls: [
|
||||
'file://test/_fixtures/gradle/maven/repo1.maven.org/maven2/',
|
||||
'file://test/_fixtures/gradle/maven/custom_maven_repo/maven2/',
|
||||
'file://test/datasource/gradle/_fixtures/maven/repo1.maven.org/maven2/',
|
||||
'file://test/datasource/gradle/_fixtures/maven/custom_maven_repo/maven2/',
|
||||
],
|
||||
});
|
||||
expect(releases.releases).toEqual(
|
||||
|
@ -96,8 +96,8 @@ describe('datasource/maven', () => {
|
|||
...config,
|
||||
lookupName: 'mysql:mysql-connector-java',
|
||||
registryUrls: [
|
||||
'file://test/_fixtures/gradle/maven/repo1.maven.org/maven2/',
|
||||
'file://test/_fixtures/gradle/maven/custom_maven_repo/maven2/',
|
||||
'file://test/datasource/gradle/_fixtures/maven/repo1.maven.org/maven2/',
|
||||
'file://test/datasource/gradle/_fixtures/maven/custom_maven_repo/maven2/',
|
||||
],
|
||||
});
|
||||
expect(releases.releases).toEqual(
|
||||
|
|
|
@ -5,24 +5,30 @@ const datasource = require('../../lib/datasource');
|
|||
jest.mock('../../lib/util/got');
|
||||
jest.mock('../../lib/util/host-rules');
|
||||
|
||||
const pkgListV3 = fs.readFileSync('test/_fixtures/nuget/nunitV3.json', 'utf8');
|
||||
const pkgListV3 = fs.readFileSync(
|
||||
'test/datasource/nuget/_fixtures/nunitV3.json',
|
||||
'utf8'
|
||||
);
|
||||
const pkgListV3WithoutProkjectUrl = fs.readFileSync(
|
||||
'test/_fixtures/nuget/nunitV3_withoutProjectUrl.json',
|
||||
'test/datasource/nuget/_fixtures/nunitV3_withoutProjectUrl.json',
|
||||
'utf8'
|
||||
);
|
||||
const pkgInfoV3FromNuget = fs.readFileSync(
|
||||
'test/_fixtures/nuget/nunitv3_nuget-org.xml',
|
||||
'test/datasource/nuget/_fixtures/nunitv3_nuget-org.xml',
|
||||
'utf8'
|
||||
);
|
||||
|
||||
const pkgListV2 = fs.readFileSync('test/_fixtures/nuget/nunitV2.xml', 'utf8');
|
||||
const pkgListV2 = fs.readFileSync(
|
||||
'test/datasource/nuget/_fixtures/nunitV2.xml',
|
||||
'utf8'
|
||||
);
|
||||
const pkgListV2WithoutProjectUrl = fs.readFileSync(
|
||||
'test/_fixtures/nuget/nunitV2_withoutProjectUrl.xml',
|
||||
'test/datasource/nuget/_fixtures/nunitV2_withoutProjectUrl.xml',
|
||||
'utf8'
|
||||
);
|
||||
|
||||
const nugetIndexV3 = fs.readFileSync(
|
||||
'test/_fixtures/nuget/indexV3.json',
|
||||
'test/datasource/nuget/_fixtures/indexV3.json',
|
||||
'utf8'
|
||||
);
|
||||
|
||||
|
|
|
@ -31,9 +31,7 @@
|
|||
"plugin",
|
||||
"addin"
|
||||
],
|
||||
"authors": [
|
||||
"Charlie Poole, Rob Prouse"
|
||||
],
|
||||
"authors": ["Charlie Poole, Rob Prouse"],
|
||||
"totalDownloads": 34513003,
|
||||
"verified": true,
|
||||
"versions": [
|
|
@ -30,9 +30,7 @@
|
|||
"plugin",
|
||||
"addin"
|
||||
],
|
||||
"authors": [
|
||||
"Charlie Poole, Rob Prouse"
|
||||
],
|
||||
"authors": ["Charlie Poole, Rob Prouse"],
|
||||
"totalDownloads": 34513003,
|
||||
"verified": true,
|
||||
"versions": [
|
|
@ -6,10 +6,14 @@ const hostRules = require('../../lib/util/host-rules');
|
|||
jest.mock('../../lib/util/got');
|
||||
jest.mock('../../lib/util/host-rules');
|
||||
|
||||
const includesJson = fs.readFileSync('test/_fixtures/packagist/includes.json');
|
||||
const beytJson = fs.readFileSync('test/_fixtures/packagist/1beyt.json');
|
||||
const includesJson = fs.readFileSync(
|
||||
'test/datasource/packagist/_fixtures/includes.json'
|
||||
);
|
||||
const beytJson = fs.readFileSync(
|
||||
'test/datasource/packagist/_fixtures/1beyt.json'
|
||||
);
|
||||
const mailchimpJson = fs.readFileSync(
|
||||
'test/_fixtures/packagist/mailchimp-api.json'
|
||||
'test/datasource/packagist/_fixtures/mailchimp-api.json'
|
||||
);
|
||||
|
||||
describe('datasource/packagist', () => {
|
||||
|
|
|
@ -0,0 +1,127 @@
|
|||
{
|
||||
"packages": {
|
||||
"wpackagist-plugin/1beyt": {
|
||||
"1.0": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.0",
|
||||
"version_normalized": "1.0.0.0",
|
||||
"uid": 590,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.0.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.0"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"1.1": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.1",
|
||||
"version_normalized": "1.1.0.0",
|
||||
"uid": 591,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.1.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.1"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"1.4": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.4",
|
||||
"version_normalized": "1.4.0.0",
|
||||
"uid": 592,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.4.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.4"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"1.5": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.5",
|
||||
"version_normalized": "1.5.0.0",
|
||||
"uid": 593,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.5.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.5"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"1.5.1": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "1.5.1",
|
||||
"version_normalized": "1.5.1.0",
|
||||
"uid": 594,
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.1.5.1.zip"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "tags/1.5.1"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
},
|
||||
"dev-trunk": {
|
||||
"name": "wpackagist-plugin/1beyt",
|
||||
"version": "dev-trunk",
|
||||
"version_normalized": "9999999-dev",
|
||||
"uid": 595,
|
||||
"time": "2018-09-03 21:31:30",
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/1beyt.zip?timestamp=1536010290"
|
||||
},
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/1beyt/",
|
||||
"reference": "trunk"
|
||||
},
|
||||
"homepage": "https://wordpress.org/plugins/1beyt/",
|
||||
"require": {
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"type": "wordpress-plugin"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,630 @@
|
|||
{
|
||||
"packages": {
|
||||
"drewm/mailchimp-api": {
|
||||
"dev-api-v2": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v2 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "dev-api-v2",
|
||||
"version_normalized": "dev-api-v2",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{ "name": "Drew McLellan", "homepage": "http://allinthehead.com/" }
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "2ace9cf087bea43d0bf9c7207d94ce93642e6262"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/2ace9cf087bea43d0bf9c7207d94ce93642e6262",
|
||||
"reference": "2ace9cf087bea43d0bf9c7207d94ce93642e6262",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-01-17T15:57:27+00:00",
|
||||
"autoload": { "psr-0": { "Drewm": "src/" } },
|
||||
"require": { "php": ">=5.3" },
|
||||
"uid": 660713
|
||||
},
|
||||
"dev-api-v3": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "dev-api-v3",
|
||||
"version_normalized": "dev-api-v3",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "268dca3f0e35bdc263ceb8114b24c7496c3b46f5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/268dca3f0e35bdc263ceb8114b24c7496c3b46f5",
|
||||
"reference": "268dca3f0e35bdc263ceb8114b24c7496c3b46f5",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-01-17T15:59:26+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 456958
|
||||
},
|
||||
"dev-master": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "dev-master",
|
||||
"version_normalized": "9999999-dev",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "e3febc93dbe8047f0a14fea19c1efe79cecc7e98"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/e3febc93dbe8047f0a14fea19c1efe79cecc7e98",
|
||||
"reference": "e3febc93dbe8047f0a14fea19c1efe79cecc7e98",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2018-02-23T09:45:38+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3", "ext-curl": "*" },
|
||||
"require-dev": {
|
||||
"vlucas/phpdotenv": "^2.0",
|
||||
"phpunit/phpunit": "7.0.*"
|
||||
},
|
||||
"uid": 112102
|
||||
},
|
||||
"v1.0": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v2 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v1.0",
|
||||
"version_normalized": "1.0.0.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{ "name": "Drew McLellan", "homepage": "http://allinthehead.com/" }
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "0b763f05fe18610061b8289a399a9d0569036a50"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/0b763f05fe18610061b8289a399a9d0569036a50",
|
||||
"reference": "0b763f05fe18610061b8289a399a9d0569036a50",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2014-05-30T16:51:39+00:00",
|
||||
"autoload": { "psr-0": { "Drewm": "src/" } },
|
||||
"require": { "php": ">=5.3" },
|
||||
"uid": 249784
|
||||
},
|
||||
"v1.1": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v2 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v1.1",
|
||||
"version_normalized": "1.1.0.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{ "name": "Drew McLellan", "homepage": "http://allinthehead.com/" }
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "707d555962442b21a75683a56bdb7cebd0a19f72"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/707d555962442b21a75683a56bdb7cebd0a19f72",
|
||||
"reference": "707d555962442b21a75683a56bdb7cebd0a19f72",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2015-07-07T15:38:25+00:00",
|
||||
"autoload": { "psr-0": { "Drewm": "src/" } },
|
||||
"require": { "php": ">=5.3" },
|
||||
"uid": 454905
|
||||
},
|
||||
"v2.0": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.0",
|
||||
"version_normalized": "2.0.0.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "a2eb58b615aff713fcb1714e33f321712c5be3c8"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/a2eb58b615aff713fcb1714e33f321712c5be3c8",
|
||||
"reference": "a2eb58b615aff713fcb1714e33f321712c5be3c8",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-01-17T13:08:01+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 660717
|
||||
},
|
||||
"v2.1": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.1",
|
||||
"version_normalized": "2.1.0.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "a9bf617afb5a9bcb2601f5cc23b01a7b581d5659"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/a9bf617afb5a9bcb2601f5cc23b01a7b581d5659",
|
||||
"reference": "a9bf617afb5a9bcb2601f5cc23b01a7b581d5659",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-01-30T16:12:54+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 678375
|
||||
},
|
||||
"v2.1.1": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.1.1",
|
||||
"version_normalized": "2.1.1.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "86f529eba05a7e4c3a3e091aed8ff056137e6251"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/86f529eba05a7e4c3a3e091aed8ff056137e6251",
|
||||
"reference": "86f529eba05a7e4c3a3e091aed8ff056137e6251",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-04-06T08:37:20+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 766160
|
||||
},
|
||||
"v2.1.2": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.1.2",
|
||||
"version_normalized": "2.1.2.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "f4539014e9cc96eab0f187f52eb60499518a31bb"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/f4539014e9cc96eab0f187f52eb60499518a31bb",
|
||||
"reference": "f4539014e9cc96eab0f187f52eb60499518a31bb",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-04-06T12:41:37+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 766567
|
||||
},
|
||||
"v2.1.3": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.1.3",
|
||||
"version_normalized": "2.1.3.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "6188e2be5827efb6595f63ad6f01a26e84bd39f7"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/6188e2be5827efb6595f63ad6f01a26e84bd39f7",
|
||||
"reference": "6188e2be5827efb6595f63ad6f01a26e84bd39f7",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-04-12T09:09:47+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 774505
|
||||
},
|
||||
"v2.2": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.2",
|
||||
"version_normalized": "2.2.0.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "590fb71e3493b5daba382c44f714f2e25d785814"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/590fb71e3493b5daba382c44f714f2e25d785814",
|
||||
"reference": "590fb71e3493b5daba382c44f714f2e25d785814",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-04-23T12:43:28+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3", "ext-curl": "*" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 790573
|
||||
},
|
||||
"v2.2.1": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.2.1",
|
||||
"version_normalized": "2.2.1.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "a2bf78208c49b205482c5ca884cb45a8cd266d5c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/a2bf78208c49b205482c5ca884cb45a8cd266d5c",
|
||||
"reference": "a2bf78208c49b205482c5ca884cb45a8cd266d5c",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-04-23T18:00:21+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3", "ext-curl": "*" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 843075
|
||||
},
|
||||
"v2.2.2": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.2.2",
|
||||
"version_normalized": "2.2.2.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "6ebcfd131fd6f3cac69be9fccb6c3f8102736952"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/6ebcfd131fd6f3cac69be9fccb6c3f8102736952",
|
||||
"reference": "6ebcfd131fd6f3cac69be9fccb6c3f8102736952",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-07-01T09:58:24+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3", "ext-curl": "*" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 884940
|
||||
},
|
||||
"v2.2.3": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.2.3",
|
||||
"version_normalized": "2.2.3.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "89b7dbc54b7ba8c2e249d6e63f66d22ecb8070f8"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/89b7dbc54b7ba8c2e249d6e63f66d22ecb8070f8",
|
||||
"reference": "89b7dbc54b7ba8c2e249d6e63f66d22ecb8070f8",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-07-01T15:53:33+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3", "ext-curl": "*" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 897514
|
||||
},
|
||||
"v2.2.4": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.2.4",
|
||||
"version_normalized": "2.2.4.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "89b7dbc54b7ba8c2e249d6e63f66d22ecb8070f8"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/89b7dbc54b7ba8c2e249d6e63f66d22ecb8070f8",
|
||||
"reference": "89b7dbc54b7ba8c2e249d6e63f66d22ecb8070f8",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-07-01T15:53:33+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3", "ext-curl": "*" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 897515
|
||||
},
|
||||
"v2.3": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.3",
|
||||
"version_normalized": "2.3.0.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "6a5373378f8e61284be81d6424d22fb2a3a1ff9e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/6a5373378f8e61284be81d6424d22fb2a3a1ff9e",
|
||||
"reference": "6a5373378f8e61284be81d6424d22fb2a3a1ff9e",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2016-12-21T14:50:24+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3", "ext-curl": "*" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 1137300
|
||||
},
|
||||
"v2.4": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.4",
|
||||
"version_normalized": "2.4.0.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "fe480bb652f85270227bf6d639b0026a531f21fc"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/fe480bb652f85270227bf6d639b0026a531f21fc",
|
||||
"reference": "fe480bb652f85270227bf6d639b0026a531f21fc",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2017-02-16T13:24:20+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3", "ext-curl": "*" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 1237997
|
||||
},
|
||||
"v2.5": {
|
||||
"name": "drewm/mailchimp-api",
|
||||
"description": "Super-simple, minimum abstraction MailChimp API v3 wrapper",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/drewm/mailchimp-api",
|
||||
"version": "v2.5",
|
||||
"version_normalized": "2.5.0.0",
|
||||
"license": ["MIT"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drew McLellan",
|
||||
"email": "drew.mclellan@gmail.com",
|
||||
"homepage": "http://allinthehead.com/"
|
||||
}
|
||||
],
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drewm/mailchimp-api.git",
|
||||
"reference": "f532fa26cd6e7d17c9ba40a757d8c6bfee47dace"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drewm/mailchimp-api/zipball/f532fa26cd6e7d17c9ba40a757d8c6bfee47dace",
|
||||
"reference": "f532fa26cd6e7d17c9ba40a757d8c6bfee47dace",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"time": "2018-02-16T15:31:05+00:00",
|
||||
"autoload": { "psr-4": { "DrewM\\MailChimp\\": "src" } },
|
||||
"require": { "php": ">=5.3", "ext-curl": "*" },
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "7.0.*",
|
||||
"vlucas/phpdotenv": "^2.0"
|
||||
},
|
||||
"uid": 1920725
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -4,10 +4,14 @@ const datasource = require('../../lib/datasource');
|
|||
|
||||
jest.mock('../../lib/util/got');
|
||||
|
||||
const res1 = fs.readFileSync('test/_fixtures/pypi/azure-cli-monitor.json');
|
||||
const htmlResponse = fs.readFileSync('test/_fixtures/pypi/versions-html.html');
|
||||
const res1 = fs.readFileSync(
|
||||
'test/datasource/pypi/_fixtures/azure-cli-monitor.json'
|
||||
);
|
||||
const htmlResponse = fs.readFileSync(
|
||||
'test/datasource/pypi/_fixtures/versions-html.html'
|
||||
);
|
||||
const badResponse = fs.readFileSync(
|
||||
'test/_fixtures/pypi/versions-html-badfile.html'
|
||||
'test/datasource/pypi/_fixtures/versions-html-badfile.html'
|
||||
);
|
||||
|
||||
describe('datasource/pypi', () => {
|
||||
|
|
|
@ -0,0 +1,829 @@
|
|||
{
|
||||
"info": {
|
||||
"author": "Microsoft Corporation",
|
||||
"author_email": "azpycli@microsoft.com",
|
||||
"bugtrack_url": null,
|
||||
"classifiers": [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: System Administrators",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 2",
|
||||
"Programming Language :: Python :: 2.7",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6"
|
||||
],
|
||||
"description": "Microsoft Azure CLI 'Monitor' Command Module\n============================================\n\n\n\n.. :changelog:\n\nRelease History\n===============\n\n0.1.7\n+++++\n* Minor fixes.\n\n0.1.6\n+++++\n* Minor fixes.\n\n0.1.5\n+++++\n* Minor fixes.\n* `sdist` is now compatible with wheel 0.31.0\n\n0.1.4\n+++++\n* `metrics list`: Added support for `--top`, `--orderby` and `--namespace`. [Closes #5785](https://github.com/Azure/azure-cli/issues/5785)\n* `metrics list`: Accepts a space-separated list of metrics to retrieve. [Fixes #4529](https://github.com/Azure/azure-cli/issues/5785)\n* `metrics list-definitions`: Added support for `--namespace`. [Closes #5785](https://github.com/Azure/azure-cli/issues/5785)\n\n0.1.3\n+++++\n* Deprecates the `monitor autoscale-settings` commands.\n* Adds the `monitor autoscale` command group.\n* Adds the `monitor autoscale profile` command group.\n* Adds the `monitor autoscale rule` command group.\n\n0.1.2\n+++++\n* Fix az monitor log-profiles create command\n\n0.1.1\n+++++\n* Minor fixes.\n\n0.1.0\n+++++\n* BC: Add multi-diagnostic settings support. `--name` is required in `monitor diagnostic-settings create`.\n* Add command to get diagnostic settings category.\n\n0.0.14\n++++++\n* Update for CLI core changes.\n\n0.0.13\n++++++\n* Update managed SDK reference to 0.4.0\n* Remove data plane SDK reference\n* BREAKING CHANGE: Add multi-dimension support to metrics command\n\n0.0.12\n++++++\n* Add activity-log alert commands\n* Minor fixes.\n\n0.0.11\n++++++\n* Add action-group commands\n\n0.0.10 (2017-09-22)\n+++++++++++++++++++\n* minor fixes\n\n0.0.9 (2017-08-28)\n++++++++++++++++++\n* minor fixes\n\n0.0.8 (2017-07-07)\n++++++++++++++++++\n* minor fixes\n\n0.0.7 (2017-06-21)\n++++++++++++++++++\n* No changes.\n\n0.0.6 (2017-06-13)\n++++++++++++++++++\n* Minor fixes.\n\n0.0.5 (2017-05-30)\n+++++++++++++++++++++\n\n* Include autoscale template file to fix `az monitor autoscale-settings get-parameters-template` command (#3349)\n* BC: `monitor alert-rule-incidents list` renamed `monitor alert list-incidents`\n* BC: `monitor alert-rule-incidents show` renamed `monitor alert show-incident`\n* BC: `monitor metric-defintions list` renamed `monitor metrics list-definitions`\n* BC: `monitor alert-rules` renamed `monitor alert`\n* BC: `monitor alert create` completely revamped. `condition` and `action` no longer accepts JSON.\n\t Adds numerous parameters to simplify the rule creation process. `location` no longer required.\n\t Added name or ID support for target.\n\t `--alert-rule-resource-name` removed. `is-enabled` renamed `enabled` and no longer required.\n\t `description` defaults based on the supplied condition. Added examples to help clarifiy the\n\t new format.\n* BC: Support names or IDs for `monitor metric` commands.\n* `monitor alert rule update` - Added numerous convenience arguments to improve usability. Added\n examples to explain usage of the new arguments.\n\n0.0.4 (2017-05-09)\n+++++++++++++++++++++\n\n* Minor fixes.\n\n0.0.3 (2017-04-28)\n+++++++++++++++++++++\n\n* Bug Fix: Modeling `--actions` of `az alert-rules create` to consume JSON string (#3009)\n* Bug fix - diagnostic settings create does not accept logs/metrics from show commands (#2913)\n\n0.0.2 (2017-04-17)\n+++++++++++++++++++++\n\n* Apply core changes required for JSON string parsing from shell (#2705)\n\n0.0.1 (2017-04-03)\n+++++++++++++++++++++\n\n* Preview release.\n\n\n",
|
||||
"description_content_type": "",
|
||||
"docs_url": null,
|
||||
"download_url": "",
|
||||
"downloads": { "last_day": -1, "last_month": -1, "last_week": -1 },
|
||||
"home_page": "https://github.com/Azure/azure-cli",
|
||||
"keywords": "",
|
||||
"license": "MIT",
|
||||
"maintainer": "",
|
||||
"maintainer_email": "",
|
||||
"name": "azure-cli-monitor",
|
||||
"package_url": "https://pypi.org/project/azure-cli-monitor/",
|
||||
"platform": "",
|
||||
"project_url": "https://pypi.org/project/azure-cli-monitor/",
|
||||
"release_url": "https://pypi.org/project/azure-cli-monitor/0.1.7/",
|
||||
"requires_dist": [
|
||||
"azure-cli-command-modules-nspkg (>=2.0.0)",
|
||||
"azure-mgmt-resource (==1.2.1)",
|
||||
"azure-mgmt-monitor (==0.5.0)",
|
||||
"azure-cli-core"
|
||||
],
|
||||
"requires_python": "",
|
||||
"summary": "Microsoft Azure Command-Line Tools Monitor Command Module",
|
||||
"version": "0.1.7"
|
||||
},
|
||||
"last_serial": 3888535,
|
||||
"releases": {
|
||||
"0.0.1": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "17284f00c94059e22995b0e889786f59",
|
||||
"sha256": "88d0c9e066135f1f05e526e0b5d88c44a12b34a1421e739250fa654e0ebd2859"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.1-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "17284f00c94059e22995b0e889786f59",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 11735,
|
||||
"upload_time": "2017-04-03T16:55:14",
|
||||
"url": "https://files.pythonhosted.org/packages/5f/3d/46a08ac85bf70f7fb0c1e139d02321c42b6b69b693d00595c9369b0cbbf1/azure_cli_monitor-0.0.1-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "ea2d70301b3de49399ee9cacd94ec6f2",
|
||||
"sha256": "64868bd109a7550a2799e888412e18533af4a2650e076849aaceb0bda43b7116"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.1.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "ea2d70301b3de49399ee9cacd94ec6f2",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 6986,
|
||||
"upload_time": "2017-04-03T16:55:08",
|
||||
"url": "https://files.pythonhosted.org/packages/c4/2e/64b1b7c617f3b815262986cc6db19b9a38dcf010abe1553365d73bd9ea52/azure-cli-monitor-0.0.1.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.10": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "705b6d205f3015690d4688112c0a0077",
|
||||
"sha256": "a78f32d97fb39ae310952d35019cd948960ba10be8021d2643db9dea139be87b"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.10-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "705b6d205f3015690d4688112c0a0077",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 19131,
|
||||
"upload_time": "2017-09-22T23:47:59",
|
||||
"url": "https://files.pythonhosted.org/packages/4f/d1/75d28eafa22c1db4d0c1a72ebc2b2ceb953d455ec256081b56744b801426/azure_cli_monitor-0.0.10-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "ae80ef04dc67e8cd3510655552250052",
|
||||
"sha256": "b442ce77045e82b973f6f3721118bb898d944b1f0aeab7a1b4a67754af1542a9"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.10.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "ae80ef04dc67e8cd3510655552250052",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 13540,
|
||||
"upload_time": "2017-09-22T23:47:54",
|
||||
"url": "https://files.pythonhosted.org/packages/38/db/5c580e582f3fc0233586be06c7ef1a1b1269f1eea7adf346447274f3e9d2/azure-cli-monitor-0.0.10.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.11": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "9741d5fb17e5afd22b97a98954be5c0e",
|
||||
"sha256": "5ab1f8a63f15d92968d58d5e2d66c023b685dccfd8b9d4d999371b78524628e5"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.11-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "9741d5fb17e5afd22b97a98954be5c0e",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 22504,
|
||||
"upload_time": "2017-10-24T02:14:07",
|
||||
"url": "https://files.pythonhosted.org/packages/71/58/65e0eefd0a6c2b29efd77daaa1671a7631717714c0dffb1bcd1434c4cd49/azure_cli_monitor-0.0.11-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "bc0a37c227a9dcbcfb42608099432143",
|
||||
"sha256": "ea18d43746869662cdce369b3f4ad25f94e4817fe2e09ced9bd6444254da6799"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.11.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "bc0a37c227a9dcbcfb42608099432143",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 15598,
|
||||
"upload_time": "2017-10-24T02:29:50",
|
||||
"url": "https://files.pythonhosted.org/packages/42/ad/788c71dc815da91fca5a726fc76786025f8565bbefa0474e80364bd9690f/azure-cli-monitor-0.0.11.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.12": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "6785a090a87d5c0f6927fd457f28da7b",
|
||||
"sha256": "7234a35d3e941e6c26a251a90117392775de7c903d4e2ae2419b9e83510c68a0"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.12-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "6785a090a87d5c0f6927fd457f28da7b",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 27221,
|
||||
"upload_time": "2017-11-14T18:31:57",
|
||||
"url": "https://files.pythonhosted.org/packages/b0/3f/6f296f9b540d5b9519dd9e159e5d05bb76b0a8dcb802ae70718259ca4deb/azure_cli_monitor-0.0.12-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "a81e2a8df12398d8d5da79a3fda7fdca",
|
||||
"sha256": "3e2fa39d7f476903c56f36b37315612eb601007d44b2345166260dc7350dc664"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.12.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "a81e2a8df12398d8d5da79a3fda7fdca",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 19533,
|
||||
"upload_time": "2017-11-14T18:32:43",
|
||||
"url": "https://files.pythonhosted.org/packages/31/d0/10d3af541d8df02d4d82d1979b5984373fee1cd1d1fcca0fcb2f6ad96ead/azure-cli-monitor-0.0.12.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.13": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "799c3c09e95fb1e42f1ea5effdc422c3",
|
||||
"sha256": "88ea8649209ab22dad796cb37a28f78a8c6123dc1af77fe70f4c10553e34cfa5"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.13-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "799c3c09e95fb1e42f1ea5effdc422c3",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 30199,
|
||||
"upload_time": "2017-12-05T18:57:54",
|
||||
"url": "https://files.pythonhosted.org/packages/46/ea/35e3d179d1fb4574d26635fdc954ff706b7628e0c5d6d7b87610671bc81d/azure_cli_monitor-0.0.13-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "aa857068429c5c9c27f10a79b1c2e506",
|
||||
"sha256": "d4f5566e7d9918ededdffd32eb3ebd23d62683715a81da50e1cb6014353c22ed"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.13.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "aa857068429c5c9c27f10a79b1c2e506",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 20863,
|
||||
"upload_time": "2017-12-05T18:58:20",
|
||||
"url": "https://files.pythonhosted.org/packages/97/fd/16a638cf1e8280389a53cbe061dd6cbc8127664c07eab664b31f432881ef/azure-cli-monitor-0.0.13.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.14": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "acaec33983735c75871f820849a0a5aa",
|
||||
"sha256": "82c215845d715de7d175146ef1321f1d8cae970d1459ee3f00f3f4892ca50a99"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.14-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "acaec33983735c75871f820849a0a5aa",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 30530,
|
||||
"upload_time": "2018-01-05T21:26:03",
|
||||
"url": "https://files.pythonhosted.org/packages/7d/7b/6221b36aadf66b6e8cad6ff62596dabd2290f6910e33b6f2f0b735137ce6/azure_cli_monitor-0.0.14-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "4d5c74f2d41402fa444738c0f08823fb",
|
||||
"sha256": "afb2f8cc871bf6bd9396bcbead930a257efeb4cf27b1e22fde6f66b5f53b10bc"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.14.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "4d5c74f2d41402fa444738c0f08823fb",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 21781,
|
||||
"upload_time": "2018-01-05T21:26:54",
|
||||
"url": "https://files.pythonhosted.org/packages/a5/1f/8bdbf22ef0f52788bcfab634f743b6f41bb52b5e20fda76a834b548f3cff/azure-cli-monitor-0.0.14.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.2": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "1005bde622fca8dfc32ddeb32baf5bbf",
|
||||
"sha256": "a6d6a0645564c0590b5d44e3b9237c21dd6bcc151fa58f21249715a5d4c6419f"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.2-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "1005bde622fca8dfc32ddeb32baf5bbf",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 11855,
|
||||
"upload_time": "2017-04-17T20:32:30",
|
||||
"url": "https://files.pythonhosted.org/packages/e5/43/b7448186dc599f16fdfcece88f1c3374152939f10c0fefaae36753c1b8f2/azure_cli_monitor-0.0.2-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "267fe5c217ea0860bd8e5fd87b50f88c",
|
||||
"sha256": "f6e5a56cf69630df41923a57ce0294c3d7a7c567e22b4a713af75cd367054ae0"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.2.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "267fe5c217ea0860bd8e5fd87b50f88c",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 7048,
|
||||
"upload_time": "2017-04-17T20:32:38",
|
||||
"url": "https://files.pythonhosted.org/packages/37/71/894d244697aeb3735522b95547c02beeb0ad5d3200fa0f453a6ca74a7a1b/azure-cli-monitor-0.0.2.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.3": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "ea36d5d86d3ddb4d605c3d0a93375c4b",
|
||||
"sha256": "236803bffb6571fa2a580f84aeec92c7940fe6662b8d3fc869708cd1f544dea7"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.3-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "ea36d5d86d3ddb4d605c3d0a93375c4b",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 11331,
|
||||
"upload_time": "2017-04-28T21:18:54",
|
||||
"url": "https://files.pythonhosted.org/packages/5f/1b/2d2324066c178e28149b99f545882b1a74a4fee772ab86b50c0d8f0fbef8/azure_cli_monitor-0.0.3-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "ca3d4da9a2758ce7ea18884e4fe1b711",
|
||||
"sha256": "1733620e9908bd6a564cadb85dd1daeb585d0e6add9325b59ae1f6c3ebb0f29f"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.3.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "ca3d4da9a2758ce7ea18884e4fe1b711",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 7596,
|
||||
"upload_time": "2017-04-28T21:18:47",
|
||||
"url": "https://files.pythonhosted.org/packages/9f/b9/00ad1ffabd67357eef4845dc776527011aca7a21997df310eefcbde015fd/azure-cli-monitor-0.0.3.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.4": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "d368722fcc8835fba707c3d79b85f700",
|
||||
"sha256": "51c1b54d6a27b3c861b9582ed92e40e1bc58b64c1d8157e4a0e46647ab844e82"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.4-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "d368722fcc8835fba707c3d79b85f700",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 11355,
|
||||
"upload_time": "2017-05-09T21:36:51",
|
||||
"url": "https://files.pythonhosted.org/packages/82/f4/eb8a2d11b714c740fc69a7057323e867c55e8d6aa9454732c9e1cf9a9ad8/azure_cli_monitor-0.0.4-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "6ed319ef532e1a6a32ab7d969b8ef61b",
|
||||
"sha256": "e6a596e1ffb5936a3ae8be38ebbc63acdc84c30b6ad7ef28907b127f9a3136c5"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.4.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "6ed319ef532e1a6a32ab7d969b8ef61b",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 7622,
|
||||
"upload_time": "2017-05-09T21:36:57",
|
||||
"url": "https://files.pythonhosted.org/packages/ab/c6/ff7d8ea31d3f0a70f3252e5f951ea34e15dabe9a5831b68ef204e9022d2c/azure-cli-monitor-0.0.4.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.5": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "abe2a808ec605c22fd7d959d6f0dc31a",
|
||||
"sha256": "16653c47758f0b2146b6671eb4174a6ab3a4d828b215e5542ccdb9f46268cc15"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.5-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "abe2a808ec605c22fd7d959d6f0dc31a",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 18878,
|
||||
"upload_time": "2017-05-30T23:13:49",
|
||||
"url": "https://files.pythonhosted.org/packages/74/ea/27435cea54defacd26e58eb8585e89ee4326bc93af4ff44c66b2e1e30ddf/azure_cli_monitor-0.0.5-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "1701473f789c7954a62d452c81126062",
|
||||
"sha256": "f1460b4d44b71f22e75d1bdafb1c01150f9fa14387d711bda78885994b001417"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.5.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "1701473f789c7954a62d452c81126062",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 13193,
|
||||
"upload_time": "2017-05-30T23:13:57",
|
||||
"url": "https://files.pythonhosted.org/packages/a0/19/39c6e78e0380272315f6443023cc0d510f310c122cc45e4cde72ed455112/azure-cli-monitor-0.0.5.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.6": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "1dcadd646fff0bf5d7e50769f272c938",
|
||||
"sha256": "db631ae01a6304fe3c69ed1e657713ed2f399b930b314b259c4167bcdb207d24"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.6-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "1dcadd646fff0bf5d7e50769f272c938",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 18986,
|
||||
"upload_time": "2017-06-13T22:21:05",
|
||||
"url": "https://files.pythonhosted.org/packages/f4/50/6142564de6dfb3d2633989d7ce431e3543f5cecb04c7926531328b704263/azure_cli_monitor-0.0.6-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "c7310a7e641491c6cc5300c6e7cb7865",
|
||||
"sha256": "38b4b5d438b67e2c60fba6df10f60ac5d1c69c1635130b308ec1c1e8cf9bc679"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.6.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "c7310a7e641491c6cc5300c6e7cb7865",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 14274,
|
||||
"upload_time": "2017-06-13T22:20:58",
|
||||
"url": "https://files.pythonhosted.org/packages/5d/49/ed4c9e0506927c6ed002463e563dc9acc3ecde7f5f96d431613bef6ceabe/azure-cli-monitor-0.0.6.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.7": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "795e87a076be367bb408d95a8acf4f57",
|
||||
"sha256": "0de0815b7579781dda5774bd8c5f4d13e687c6ce29eeb125b631b114c389f16c"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.7-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "795e87a076be367bb408d95a8acf4f57",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 19016,
|
||||
"upload_time": "2017-06-21T22:12:36",
|
||||
"url": "https://files.pythonhosted.org/packages/69/c1/3e6f95d9e13eb7d0ab5e9d1888443dc2a2e5dbc22b091baa41e5c2fc6634/azure_cli_monitor-0.0.7-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "d0ba835452265e5949d671ab08e9ac2d",
|
||||
"sha256": "6c3136596dcff08df2bc167a31ca017b81ec08183e6673fed5f516f24f0de3af"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.7.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "d0ba835452265e5949d671ab08e9ac2d",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 14048,
|
||||
"upload_time": "2017-06-21T22:12:47",
|
||||
"url": "https://files.pythonhosted.org/packages/14/1f/b9766a9f387a5a472939e9b17852bb1f738430bbe417b1ae2a07b8443f23/azure-cli-monitor-0.0.7.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.8": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "3dd0ffcf42f4c6d4521f336d12f31f7a",
|
||||
"sha256": "3b424c35ec4d58b7b9284e64a9eff179463caf87c1823167c133faa8859ff48b"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.8-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "3dd0ffcf42f4c6d4521f336d12f31f7a",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 18939,
|
||||
"upload_time": "2017-07-07T16:22:26",
|
||||
"url": "https://files.pythonhosted.org/packages/11/84/f6ae7907a9198a5b64a982e91d0219181a406301504da0c705e5d76645fc/azure_cli_monitor-0.0.8-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "a949a91cc136d942cb3dc190a7cab255",
|
||||
"sha256": "61c657e9a1ac78a2fac5c45515939ba90a8949e42e275b7c6a9b9bc73c064cd3"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.8.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "a949a91cc136d942cb3dc190a7cab255",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 13410,
|
||||
"upload_time": "2017-07-07T16:22:24",
|
||||
"url": "https://files.pythonhosted.org/packages/00/d3/5b260b008d292f407d031e3b1b34077487cba22e824933e204d59cfeb9d1/azure-cli-monitor-0.0.8.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.0.9": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "ff7f416e7f3940e3e05ad8af69de44ed",
|
||||
"sha256": "736ef755d363836264b22d3f2ffb1366dd7ebb2780f715da48e9106a5998b205"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.0.9-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "ff7f416e7f3940e3e05ad8af69de44ed",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 19038,
|
||||
"upload_time": "2017-08-28T20:14:33",
|
||||
"url": "https://files.pythonhosted.org/packages/03/57/eb27a9fb904e9c206abecc93aab93b84d820c189348eb4d9cd4c13e791c3/azure_cli_monitor-0.0.9-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "e2cc694bae4f8d44ef2c7ce1eaa4246d",
|
||||
"sha256": "4980e24621c8482a7f78b84ce8c8f5eb84f95411d0c8d9e940b0896c2522d789"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.0.9.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "e2cc694bae4f8d44ef2c7ce1eaa4246d",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 13487,
|
||||
"upload_time": "2017-08-28T20:14:31",
|
||||
"url": "https://files.pythonhosted.org/packages/7d/2c/f3ea88ec03ee2691cb57cb8dba7030c1dd811189efa35ea6ef371e89d4a8/azure-cli-monitor-0.0.9.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.1.0": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "cd460e9058c350d7973876560bb72dd1",
|
||||
"sha256": "feb8d4adbd69ad75fa3a5ea1523c759c0189df632c57525499c984f0c787c435"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.1.0-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "cd460e9058c350d7973876560bb72dd1",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 30722,
|
||||
"upload_time": "2018-01-17T18:36:39",
|
||||
"url": "https://files.pythonhosted.org/packages/b2/4b/a30fa3ae56518a876cf3d5437927ca97eb4ba82841e45d64190c6393a838/azure_cli_monitor-0.1.0-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "93e8f84d8e4426e2a4e40b72f2eafbf0",
|
||||
"sha256": "ca608dd71c0785764d99c5e5bfb51ca329cac9ad727cb9ef28d5d403d6aacb77"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.1.0.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "93e8f84d8e4426e2a4e40b72f2eafbf0",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 21107,
|
||||
"upload_time": "2018-01-17T18:37:04",
|
||||
"url": "https://files.pythonhosted.org/packages/71/73/973ca987ea96f411fbb2d37220a67474fa916252677ed144516882e4ce5b/azure-cli-monitor-0.1.0.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.1.1": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "0d91fe557e90200c515e7d9a5ccbed25",
|
||||
"sha256": "ba255eee0bab7e2a6788caf5764cede6845309e2222372f1653333daa5b78184"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.1.1-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "0d91fe557e90200c515e7d9a5ccbed25",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 30646,
|
||||
"upload_time": "2018-01-31T18:05:22",
|
||||
"url": "https://files.pythonhosted.org/packages/13/c5/3a43d82fce90f2cbc7c37d964b623947c9f7ca8baf48afc9adf0b555202a/azure_cli_monitor-0.1.1-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "c9678b31219832b1d336c5b57c895603",
|
||||
"sha256": "7dff5068b377082fb5ec8c56e039cf27f8ca62d9dc2bfdc4727d1d0809dba47c"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.1.1.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "c9678b31219832b1d336c5b57c895603",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 21054,
|
||||
"upload_time": "2018-01-31T18:06:08",
|
||||
"url": "https://files.pythonhosted.org/packages/af/4e/d180cc0750744d35c6206014b67c90912e028d11a07272c92fc01ef65319/azure-cli-monitor-0.1.1.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.1.2": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "7201caa940cf58cc63b375e4b94aabfa",
|
||||
"sha256": "3b0ea19f3eec23daa91513ee8cccdb26eb06ad29314597eda984c264266346e8"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.1.2-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "7201caa940cf58cc63b375e4b94aabfa",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 31534,
|
||||
"upload_time": "2018-02-13T18:17:52",
|
||||
"url": "https://files.pythonhosted.org/packages/9e/0b/8ff4e9eab2fbd4b69ca850b611e80afe8a45a0165f7511cc19b2ef435a77/azure_cli_monitor-0.1.2-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "2dad912e67404f401026934f3ce6c391",
|
||||
"sha256": "5aa1654784f4b167f94ecb7030c95de657f69aac290490cd9b85801bc5540a10"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.1.2.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "2dad912e67404f401026934f3ce6c391",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 21577,
|
||||
"upload_time": "2018-02-13T18:18:42",
|
||||
"url": "https://files.pythonhosted.org/packages/28/c3/3ad4b3c8d025c771e902985fe7e6bf4d1f0cb4d89dfd75a4ec4b806a8e25/azure-cli-monitor-0.1.2.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.1.3": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "c9752691452a57c13e9d8f434929e4e2",
|
||||
"sha256": "bc5670c189c7fbb080f79612f2540b970651e427d9247d916c6d4aba3041d392"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.1.3-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "c9752691452a57c13e9d8f434929e4e2",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 42171,
|
||||
"upload_time": "2018-03-13T17:08:20",
|
||||
"url": "https://files.pythonhosted.org/packages/2b/13/7dd4844213db1abd2406051f52b092bae4e0f8b21a9dae513fbdabe9ef46/azure_cli_monitor-0.1.3-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "a39ee95b0798b1f8f209b584286d809f",
|
||||
"sha256": "c84fe2ee965aefdf286cf6cf39ac0b99d9a56c3d5060bbdb8fc2c0a4b147d2e1"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.1.3.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "a39ee95b0798b1f8f209b584286d809f",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 31304,
|
||||
"upload_time": "2018-03-13T17:09:04",
|
||||
"url": "https://files.pythonhosted.org/packages/dd/12/01b1aedd6469bfd20d1558ab73623426887863cad8d89b7f3e4809e745c6/azure-cli-monitor-0.1.3.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.1.4": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "9bbadb1b699d5f1d2c8f81ea73a7e6d0",
|
||||
"sha256": "b80defea98e8702947bf4900a9a2ae9e82e5143cec488ee2c579a65203a022d5"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.1.4-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "9bbadb1b699d5f1d2c8f81ea73a7e6d0",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 42696,
|
||||
"upload_time": "2018-03-27T17:55:25",
|
||||
"url": "https://files.pythonhosted.org/packages/e9/d7/bb3637dd6d6c9b008aebe58e704e62744a89a5e38bf4bfbd8abdbd031816/azure_cli_monitor-0.1.4-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "c271707e92e826790e9861f3dd3cd643",
|
||||
"sha256": "294a6795e9f21e2c4d480b0dd80fe9f74721f343c7537e70bc167c7db361c7f9"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.1.4.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "c271707e92e826790e9861f3dd3cd643",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 32685,
|
||||
"upload_time": "2018-03-27T17:55:48",
|
||||
"url": "https://files.pythonhosted.org/packages/b9/e7/0261848b9944cc47e727a843d0b8fc81b0274f54a1812cfaae1cd4696954/azure-cli-monitor-0.1.4.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.1.5": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "bc18807e3202d0dbe8bddb1de828d126",
|
||||
"sha256": "d455a01b16279abbe66ba84e9823c1acf2335a5b82ced372daab1082d7118395"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.1.5-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "bc18807e3202d0dbe8bddb1de828d126",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 42690,
|
||||
"upload_time": "2018-04-10T17:25:47",
|
||||
"url": "https://files.pythonhosted.org/packages/19/a9/59fe9b224a3a8787ec02aa790b52c38dc95234c7e7fdd92c74819f801d2c/azure_cli_monitor-0.1.5-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "629257aa533a15a17b38db91d4f9e526",
|
||||
"sha256": "fa7b7d4b6b4207ddacb7949db59897566a7336fddfb50d68939f3aedf812f377"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.1.5.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "629257aa533a15a17b38db91d4f9e526",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 32685,
|
||||
"upload_time": "2018-04-10T17:26:29",
|
||||
"url": "https://files.pythonhosted.org/packages/fa/1b/f97dd43fe52d0883c9e09f659e27a47769c80db719391aa82b05711ed5be/azure-cli-monitor-0.1.5.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.1.6": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "f27ab3150c7ff28a7e544ad5647d6981",
|
||||
"sha256": "3ff637e785d0455eee08f8bef91454b131c86d3ae6e580da69e2e1211bfc7b6c"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.1.6-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "f27ab3150c7ff28a7e544ad5647d6981",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 40502,
|
||||
"upload_time": "2018-05-07T17:59:09",
|
||||
"url": "https://files.pythonhosted.org/packages/22/22/12006adab5c4a9952d12022cc1e015792135353e613d721aed3375178da8/azure_cli_monitor-0.1.6-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "1e8cb6c4293eeee64a221d2c69d30a78",
|
||||
"sha256": "bac2445a68a095060000b29fc0aa2f3a2cf3ece68def9e0167d531f809342b9c"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.1.6.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "1e8cb6c4293eeee64a221d2c69d30a78",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 32541,
|
||||
"upload_time": "2018-05-07T17:59:37",
|
||||
"url": "https://files.pythonhosted.org/packages/3a/d6/ec2f81b036f1aefc24bb6bf6336051335c519a9976bd6529636e4c20121c/azure-cli-monitor-0.1.6.tar.gz"
|
||||
}
|
||||
],
|
||||
"0.1.7": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "a493c9ddf7946751ac6184b14195a62d",
|
||||
"sha256": "0b11e9a9f9a0f8ed20295fa4ff1e7257c1b0692067f098317717e2b9c716895e"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.1.7-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "a493c9ddf7946751ac6184b14195a62d",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 40529,
|
||||
"upload_time": "2018-05-22T17:25:23",
|
||||
"url": "https://files.pythonhosted.org/packages/1b/ce/259302ad8df592b91633be2faae6a6ef69310d8f81ecd96fbff91209711e/azure_cli_monitor-0.1.7-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "0d75cd4e637e50f25010f8e7bec7f5f9",
|
||||
"sha256": "d6612c2ebc787004d6046c907ed23cf5f407d01fadfc0276751a16322f0c8571"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.1.7.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "0d75cd4e637e50f25010f8e7bec7f5f9",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 31581,
|
||||
"upload_time": "2018-05-22T17:25:49",
|
||||
"url": "https://files.pythonhosted.org/packages/fb/56/d8482cdfd010c15468f00b9d439d3c05f858546f05f67ecd22c06ff00135/azure-cli-monitor-0.1.7.tar.gz"
|
||||
}
|
||||
]
|
||||
},
|
||||
"urls": [
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "a493c9ddf7946751ac6184b14195a62d",
|
||||
"sha256": "0b11e9a9f9a0f8ed20295fa4ff1e7257c1b0692067f098317717e2b9c716895e"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure_cli_monitor-0.1.7-py2.py3-none-any.whl",
|
||||
"has_sig": false,
|
||||
"md5_digest": "a493c9ddf7946751ac6184b14195a62d",
|
||||
"packagetype": "bdist_wheel",
|
||||
"python_version": "py2.py3",
|
||||
"size": 40529,
|
||||
"upload_time": "2018-05-22T17:25:23",
|
||||
"url": "https://files.pythonhosted.org/packages/1b/ce/259302ad8df592b91633be2faae6a6ef69310d8f81ecd96fbff91209711e/azure_cli_monitor-0.1.7-py2.py3-none-any.whl"
|
||||
},
|
||||
{
|
||||
"comment_text": "",
|
||||
"digests": {
|
||||
"md5": "0d75cd4e637e50f25010f8e7bec7f5f9",
|
||||
"sha256": "d6612c2ebc787004d6046c907ed23cf5f407d01fadfc0276751a16322f0c8571"
|
||||
},
|
||||
"downloads": -1,
|
||||
"filename": "azure-cli-monitor-0.1.7.tar.gz",
|
||||
"has_sig": false,
|
||||
"md5_digest": "0d75cd4e637e50f25010f8e7bec7f5f9",
|
||||
"packagetype": "sdist",
|
||||
"python_version": "source",
|
||||
"size": 31581,
|
||||
"upload_time": "2018-05-22T17:25:49",
|
||||
"url": "https://files.pythonhosted.org/packages/fb/56/d8482cdfd010c15468f00b9d439d3c05f858546f05f67ecd22c06ff00135/azure-cli-monitor-0.1.7.tar.gz"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -8,4 +8,4 @@
|
|||
<a href="https://files.pythonhosted.org/packages/04/89/29cdbc86a0890a4f1e46b6f4bb9b7959e461e0202f6a305bd8b586cc1404/dj-database-url-0.1.2.tar.gz#sha256=6169f2c272326e3cced6999effb19013365ea73f6ed6c731efa4e346711d8969">dj-database-url.tar.gz</a><br/>
|
||||
<a href="https://files.pythonhosted.org/packages/bd/80/f8430a065c09367cd766cdea08f80d11b625944a653f96c2bd02d183355b/dj-database-url-0.1.3.tar.gz#sha256=222744896dcbe939aa940217c940a8a95981be13beb9af639a1da024be4f9411">dj-database-url.tar.gz</a><br/>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
|
@ -20,4 +20,4 @@
|
|||
<a href="https://files.pythonhosted.org/packages/01/c4/98fbf678e810029be8078419f7bba626aafa2e81bc38748757db954c477c/dj-database-url-0.5.0.tar.gz#sha256=4aeaeb1f573c74835b0686a2b46b85990571159ffc21aa57ecd4d1e1cb334163">dj-database-url-0.5.0.tar.gz</a><br/>
|
||||
<a href="https://files.pythonhosted.org/packages/d4/a6/4b8578c1848690d0c307c7c0596af2077536c9ef2a04d42b00fabaa7e49d/dj_database_url-0.5.0-py2.py3-none-any.whl#sha256=851785365761ebe4994a921b433062309eb882fedd318e1b0fcecc607ed02da9">dj_database_url-0.5.0-py2.py3-none-any.whl</a><br/>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
|
@ -5,7 +5,7 @@ const { getPkgReleases } = require('../../lib/datasource/ruby-version');
|
|||
jest.mock('../../lib/util/got');
|
||||
|
||||
const rubyReleasesHtml = fs.readFileSync(
|
||||
'test/_fixtures/ruby-version/releases.html',
|
||||
'test/datasource/ruby-version/_fixtures/releases.html',
|
||||
'utf8'
|
||||
);
|
||||
|
||||
|
|
|
@ -952,4 +952,4 @@ is proudly maintained by members of the Ruby community.
|
|||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
|
@ -1,6 +1,6 @@
|
|||
const got = require('../../../lib/util/got');
|
||||
const railsInfo = require('../../_fixtures/rubygems/rails/info.json');
|
||||
const railsVersions = require('../../_fixtures/rubygems/rails/versions.json');
|
||||
const railsInfo = require('./_fixtures/rails/info.json');
|
||||
const railsVersions = require('./_fixtures/rails/versions.json');
|
||||
const rubygems = require('../../../lib/datasource/rubygems/index.js');
|
||||
|
||||
jest.mock('../../../lib/util/got');
|
||||
|
|
|
@ -5,7 +5,7 @@ const datasource = require('../../lib/datasource');
|
|||
jest.mock('../../lib/util/got');
|
||||
|
||||
const consulData = fs.readFileSync(
|
||||
'test/_fixtures/terraform/registry-consul.json'
|
||||
'test/datasource/terraform/_fixtures/registry-consul.json'
|
||||
);
|
||||
|
||||
describe('datasource/terraform', () => {
|
||||
|
|
|
@ -4,7 +4,7 @@ jest.mock('gl-got');
|
|||
const cache = require('../lib/workers/global/cache');
|
||||
|
||||
global.platform = jest.genMockFromModule('../lib/platform/github');
|
||||
global.logger = require('./_fixtures/logger');
|
||||
global.logger = require('./logger/_fixtures');
|
||||
|
||||
global.renovateUsername = 'renovate-testing';
|
||||
global.repoCache = {};
|
||||
|
|
|
@ -1,8 +1,14 @@
|
|||
const fs = require('fs');
|
||||
const { extractPackageFile } = require('../../../lib/manager/ansible/extract');
|
||||
|
||||
const yamlFile1 = fs.readFileSync('test/_fixtures/ansible/main1.yaml', 'utf8');
|
||||
const yamlFile2 = fs.readFileSync('test/_fixtures/ansible/main2.yaml', 'utf8');
|
||||
const yamlFile1 = fs.readFileSync(
|
||||
'test/manager/ansible/_fixtures/main1.yaml',
|
||||
'utf8'
|
||||
);
|
||||
const yamlFile2 = fs.readFileSync(
|
||||
'test/manager/ansible/_fixtures/main2.yaml',
|
||||
'utf8'
|
||||
);
|
||||
|
||||
describe('lib/manager/ansible/extract', () => {
|
||||
describe('extractPackageFile()', () => {
|
||||
|
|
|
@ -1,8 +1,14 @@
|
|||
const fs = require('fs');
|
||||
const dcUpdate = require('../../../lib/manager/ansible/update');
|
||||
|
||||
const yamlFile1 = fs.readFileSync('test/_fixtures/ansible/main1.yaml', 'utf8');
|
||||
const yamlFile2 = fs.readFileSync('test/_fixtures/ansible/main2.yaml', 'utf8');
|
||||
const yamlFile1 = fs.readFileSync(
|
||||
'test/manager/ansible/_fixtures/main1.yaml',
|
||||
'utf8'
|
||||
);
|
||||
const yamlFile2 = fs.readFileSync(
|
||||
'test/manager/ansible/_fixtures/main2.yaml',
|
||||
'utf8'
|
||||
);
|
||||
|
||||
describe('manager/ansible/update', () => {
|
||||
describe('updateDependency', () => {
|
||||
|
|
|
@ -2,7 +2,7 @@ const fs = require('fs');
|
|||
const { extractPackageFile } = require('../../../lib/manager/bazel/extract');
|
||||
|
||||
const workspaceFile = fs.readFileSync(
|
||||
'test/_fixtures/bazel/WORKSPACE1',
|
||||
'test/manager/bazel/_fixtures/WORKSPACE1',
|
||||
'utf8'
|
||||
);
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ const bazelfile = require('../../../lib/manager/bazel/update');
|
|||
jest.mock('got');
|
||||
|
||||
const content = fs.readFileSync(
|
||||
path.resolve('test/_fixtures/bazel/WORKSPACE1'),
|
||||
path.resolve('test/manager/bazel/_fixtures/WORKSPACE1'),
|
||||
'utf8'
|
||||
);
|
||||
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче