Coder Social home page Coder Social logo

felicepagano / jfrog-cli Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jfrog/jfrog-cli

0.0 1.0 0.0 54.63 MB

JFrog CLI is a client that provides a simple interface that automates access to the JFrog products.

Home Page: https://www.jfrog.com/confluence/display/CLI/JFrog+CLI

License: Apache License 2.0

Shell 3.84% JavaScript 0.66% Go 95.25% Makefile 0.10% Batchfile 0.01% Dockerfile 0.14%

jfrog-cli's Introduction

JFrog CLI

JFrog CLI

Go Report Card license Go version

Tests status
V2 DEV
artifactory Artifactory
xray Xray
distribution Distribution
access Access
maven Maven
gradle Gradle
npm npm
docker Docker
podman Podman
nuget NuGet
python Python
go Go
๐Ÿ“ƒ Scripts
๐Ÿ“Š Code Analysis
๐Ÿ”Œ Plugins
โ˜๏ธ Transfer To Cloud

Table of Contents

Overview

JFrog CLI is a compact and smart client that provides a simple interface that automates access to Artifactory and Mission Control through their respective REST APIs. By using the JFrog CLI, you can greatly simplify your automation scripts making them more readable and easier to maintain. Several features of the JFrog CLI makes your scripts more efficient and reliable:

  • Multi-threaded upload and download of artifacts make builds run faster
  • Checksum optimization reduces redundant file transfers
  • Wildcards and regular expressions give you an easy way to collect all the artifacts you wish to upload or download.
  • "Dry run" gives you a preview of file transfer operations before you actually run them

Download and Installation

You can either install JFrog CLI using one of the supported installers or download its executable directly. Visit the Install JFrog CLI Page for details.

Building the Executable

JFrog CLI is written in the Go programming language, so to build the CLI yourself, you first need to have Go installed and configured on your machine.

Install Go

To download and install Go, please refer to the Go documentation. Please download Go 1.14.x or above.

Download and Build the CLI

Navigate to a directory where you want to create the jfrog-cli project, outside the $GOPATH tree.

If the GOPATH variable is unset, it's default value is the go folder under the user home.

Verify that the GO111MODULE variable is either unset, or explicitly set to auto.

Clone the jfrog-cli project by executing the following command:

git clone https://github.com/jfrog/jfrog-cli

Build the project by navigating to the jfrog folder and executing the following commands. On Unix based systems run:

cd jfrog-cli
build/build.sh

On Windows run:

cd jfrog-cli
build\build.bat

Once completed, you will find the JFrog CLI executable at your current directory.

Tests

Usage

go test -v github.com/jfrog/jfrog-cli [test-types] [flags]

The flags are:

Flag Description
-jfrog.url [Default: http://localhost:8081] JFrog platform URL.
-jfrog.user [Default: admin] JFrog platform username.
-jfrog.password [Default: password] JFrog platform password.
-jfrog.adminToken [Optional] JFrog platform admin token.
-ci.runId [Optional] A unique identifier used as a suffix to create repositories and builds in the tests.

The types are:

Type Description
-test.artifactory Artifactory tests
-test.access Access tests
-test.npm Npm tests
-test.maven Maven tests
-test.gradle Gradle tests
-test.docker Docker tests
-test.dockerScan Docker scan tests
-test.podman Podman tests
-test.go Go tests
-test.pip Pip tests
-test.pipenv Pipenv tests
-test.poetry Poetry tests
-test.nuget Nuget tests
-test.plugins Plugins tests
-test.distribution Distribution tests
-test.transfer Transfer tests
-test.xray Xray tests
  • Running the tests will create builds and repositories with timestamps, for example: cli-rt1-1592990748 and cli-rt2-1592990748.
    Once the tests are completed, the content of these repositories will be deleted.

Artifactory tests

In addition to general optional flags you can use the following optional artifactory flags.

Flag Description
-jfrog.sshKeyPath [Optional] Ssh key file path. Should be used only if the Artifactory URL format is ssh://[domain]:port.
-jfrog.sshPassphrase [Optional] Ssh key passphrase.
Examples

To run artifactory tests execute the following command.

go test -v github.com/jfrog/jfrog-cli -test.artifactory [flags]

Npm tests

Requirements
  • The npm executables should be included as part of the PATH environment variable.
  • The tests are compatible with npm 7 and higher.
Limitation
  • Currently, npm integration support only http(s) connections to Artifactory using username and password.
Examples

To run npm tests execute the following command.

go test -v github.com/jfrog/jfrog-cli -test.npm [flags]

Maven tests

Requirements
  • The java executable should be included as part of the PATH environment variable. Alternatively, set the JAVA_HOME environment variable.
Limitation
  • Currently, maven integration support only http(s) connections to Artifactory using username and password.
Examples

To run maven tests execute the following command.

go test -v github.com/jfrog/jfrog-cli -test.maven [flags]

Gradle tests

Requirements
  • The gradle executables should be included as part of the PATH environment variable.
  • The java executable should be included as part of the PATH environment variable. Alternatively, set the JAVA_HOME environment variable.
Limitation
  • Currently, gradle integration support only http(s) connections to Artifactory using username and password.
Examples

To run gradle tests execute the following command.

go test -v github.com/jfrog/jfrog-cli -test.gradle [flags]

Docker tests

Requirements
  • Make sure the environment variable RTLIC is configured with a valid license.
  • You can start an Artifactory container by running the startArtifactory.sh script under the testdata/docker/artifactory directory. Before running the tests, wait for Artifactory to finish booting up in the container.
Flag Description
-test.containerRegistry Artifactory Docker registry domain.
Examples

To run docker tests execute the following command (fill out the missing parameters as described below).

go test -v github.com/jfrog/jfrog-cli -test.docker [flags]

Podman tests

Flag Description
-test.containerRegistry Artifactory container registry domain.
Examples

To run podman tests execute the following command (fill out the missing parameters as described below).

go test -v github.com/jfrog/jfrog-cli -test.podman [flags]

Go commands tests

Requirements
  • The tests are compatible with Artifactory 6.10 and higher.
  • To run go tests run the following command:
go test -v github.com/jfrog/jfrog-cli -test.go [flags]

NuGet tests

Requirements
  • Add NuGet executable to the system search path (PATH environment variable).
  • Run the following command:
go test -v github.com/jfrog/jfrog-cli -test.nuget [flags]

Pip tests

Requirements
  • Add Python and pip executables to the system search path (PATH environment variable).
  • Run the following command:
go test -v github.com/jfrog/jfrog-cli -test.pip [flags]

Plugins tests

To run Plugins tests execute the following command:

go test -v github.com/jfrog/jfrog-cli -test.plugins

Distribution tests

To run Distribution tests execute the following command:

go test -v github.com/jfrog/jfrog-cli -test.distribution [flags]

Transfer tests

Requirement

The transfer tests execute transfer-files commands between a local Artifactory server and a remote SaaS instance. In addition to general optional flags you must use the following flags:

Flag Description
-jfrog.targetUrl JFrog target platform URL.
-jfrog.targetAdminToken JFrog target platform admin token.
-jfrog.jfrogHome The JFrog home directory of the local Artifactory installation.
-jfrog.installDataTransferPlugin Set to true if you'de like the test to install the data-transfer automatically in the source Artifactory server

To run transfer tests execute the following command:

go test -v github.com/jfrog/jfrog-cli -test.transfer [flags]

Xray tests

To run Xray tests execute the following command:

go test -v github.com/jfrog/jfrog-cli -test.xray -test.dockerScan [flags]

Code Contributions

We welcome code contributions through pull requests from the community.

Pull Requests Guidelines

  • If the existing tests do not already cover your changes, please add tests..
  • Pull requests should be created on the dev branch.
  • Please use gofmt for formatting the code before submitting the pull request.

Dependencies in other JFrog modules

This project heavily depends on:

  • github.com/jfrog/jfrog-client-go
  • github.com/jfrog/build-info-go
  • github.com/jfrog/jfrog-cli-core

Local Development

During local development, when you encounter code that needs to be changed from one of the above modules, it is recommended to replace the dependency to work with a local clone of the dependency.

For example, assuming you would like to change files from jfrog-cli-core. Clone jfrog-cli-core (preferably your fork) to your local development machine (assuming it will be cloned to /repos/jfrog-cli-core).

Change go.mod to include the following:

replace github.com/jfrog/jfrog-cli-core/v2 => /repos/jfrog-cli-core

Pull Requests

Once done with your coding, you should push the changes you made to the other modules first. Once pushed, you can change this project to resolve the dependencies from your github fork / branch. This is done by pointing the dependency in go.mod to your repository and branch. For example:

replace github.com/jfrog/jfrog-cli-core/v2 => github.com/galusben/jfrog-cli-core/v2 dev

Then run go mod tidy

Notice that go will change the version in the go.mod file.

Using JFrog CLI

JFrog CLI can be used for a variety of functions with Artifactory, Xray and Mission Control, and has a dedicated set of commands for each product. To learn how to use JFrog CLI, please visit the JFrog CLI User Guide.

JFrog CLI Plugins

JFrog CLI plugins support enhancing the functionality of JFrog CLI to meet the specific user and organization needs. The source code of a plugin is maintained as an open source Go project on GitHub. All public plugins are registered in JFrog CLI's Plugins Registry, which is hosted in the jfrog-cli-plugins-reg GitHub repository. We encourage you, as developers, to create plugins and share them publically with the rest of the community. Read more about this in the JFrog CLI Plugin Developer Guide.

Release Notes

The release notes are available here.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.