Skip to content
代码片段 群组 项目
未验证 提交 e6b9dcef 编辑于 作者: Emerald-Jayde Henao's avatar Emerald-Jayde Henao 提交者: GitLab
浏览文件

Add PHP Composer non-lock file parser

上级 62d7f320
No related branches found
No related tags found
无相关合并请求
...@@ -47,7 +47,7 @@ The Repository X-Ray searches a maximum of two directory levels from the reposit ...@@ -47,7 +47,7 @@ The Repository X-Ray searches a maximum of two directory levels from the reposit
| Java | Gradle | `build.gradle` | 17.4 or later | | Java | Gradle | `build.gradle` | 17.4 or later |
| Java | Maven | `pom.xml` | 17.4 or later | | Java | Maven | `pom.xml` | 17.4 or later |
| Kotlin | Gradle | `build.gradle.kts` | 17.5 or later | | Kotlin | Gradle | `build.gradle.kts` | 17.5 or later |
| PHP | Composer | `composer.lock` | 17.5 or later | | PHP | Composer | `composer.lock`, `composer.json` | 17.5 or later |
| Python | Conda | `environment.yml` | 17.5 or later | | Python | Conda | `environment.yml` | 17.5 or later |
| Python | Pip | `requirements.txt` | 17.5 or later | | Python | Pip | `requirements.txt` | 17.5 or later |
| Python | Poetry | `poetry.lock`, `pyproject.toml` | 17.5 or later | | Python | Poetry | `poetry.lock`, `pyproject.toml` | 17.5 or later |
......
...@@ -28,10 +28,11 @@ module Constants ...@@ -28,10 +28,11 @@ module Constants
ConfigFiles::JavaMaven, ConfigFiles::JavaMaven,
ConfigFiles::KotlinGradle, ConfigFiles::KotlinGradle,
ConfigFiles::PhpComposerLock, ConfigFiles::PhpComposerLock,
ConfigFiles::PhpComposer,
ConfigFiles::PythonConda, ConfigFiles::PythonConda,
ConfigFiles::PythonPip, ConfigFiles::PythonPip,
ConfigFiles::PythonPoetry,
ConfigFiles::PythonPoetryLock, ConfigFiles::PythonPoetryLock,
ConfigFiles::PythonPoetry,
ConfigFiles::RubyGemsLock ConfigFiles::RubyGemsLock
].freeze ].freeze
end end
......
# frozen_string_literal: true
module Ai
module Context
module Dependencies
module ConfigFiles
class PhpComposer < Base
def self.file_name_glob
'composer.json'
end
def self.lang_name
'PHP'
end
private
### Example format:
#
# {
# { ... },
# "require": {
# "php": "^7.2.5 || ^8.0",
# "composer/ca-bundle": "^1.5"
# },
# "require-dev": {
# "symfony/phpunit-bridge": "^6.4.3 || ^7.0.1",
# "phpstan/phpstan": "^1.11.8"
# },
# { ... }
# }
#
def extract_libs
parsed = ::Gitlab::Json.parse(content)
%w[require require-dev].flat_map do |key|
dig_in(parsed, key).try(:map) do |name, version|
Lib.new(name: name, version: version)
end
end.compact
rescue JSON::ParserError
raise ParsingError, 'content is not valid JSON'
end
end
end
end
end
end
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Ai::Context::Dependencies::ConfigFiles::PhpComposer, feature_category: :code_suggestions do
it 'returns the expected language value' do
expect(described_class.lang).to eq('php')
end
it_behaves_like 'parsing a valid dependency config file' do
let(:config_file_content) do
<<~JSON
{
"name": "composer/composer",
"type": "library",
"description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
"keywords": [
"package",
"dependency",
"autoload"
],
"require": {
"ext-pcre": "*",
"php": "^7.2 || ^8.0"
}
}
JSON
end
let(:expected_formatted_lib_names) do
['ext-pcre (*)', 'php (^7.2 || ^8.0)']
end
end
context 'when the content contains dev dependencies' do
it_behaves_like 'parsing a valid dependency config file' do
let(:config_file_content) do
<<~JSON
{
"name": "composer/composer",
"type": "library",
"description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
"keywords": [
"package",
"dependency",
"autoload"
],
"require": {
"ext-pcre": "*",
"php": "^7.2 || ^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"psr/log": "^1.0 || ^2.0 || ^3.0"
}
}
JSON
end
let(:expected_formatted_lib_names) do
['ext-pcre (*)', 'php (^7.2 || ^8.0)', 'phpstan/phpstan (^1.10)', 'psr/log (^1.0 || ^2.0 || ^3.0)']
end
end
end
context 'when config file content is an array' do
it_behaves_like 'parsing an invalid dependency config file' do
let(:invalid_config_file_content) { '[]' }
let(:expected_parsing_error_message) { 'encountered invalid node' }
end
end
it_behaves_like 'parsing an invalid dependency config file' do
let(:expected_parsing_error_message) { 'content is not valid JSON' }
end
describe '.matches?' do
using RSpec::Parameterized::TableSyntax
where(:path, :matches) do
'composer.json' | true
'dir/composer.json' | true
'dir/subdir/composer.json' | true
'dir/composer.js' | false
'Composer.json' | false
'composer_json' | false
'composer.lock' | false
end
with_them do
it 'matches the file name glob pattern at various directory levels' do
expect(described_class.matches?(path)).to eq(matches)
end
end
end
end
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册