Giter VIP home page Giter VIP logo

sftools's Introduction

sftools

A compilation of Sfdx plugins that make working with Org Management/Test Runs easier.

Version Appveyor CI Codecov Known Vulnerabilities Downloads/week License

$ npm install -g @knambiar/sftools
$ sfdx COMMAND
running command...
$ sfdx (-v|--version|version)
@knambiar/sftools/1.0.1 win32-x64 node-v12.0.0
$ sfdx --help [COMMAND]
USAGE
  $ sfdx COMMAND
...

sfdx tools:apex:test:run [name=value...] [-e <string>] [-l <string>] [-t <number>] [-n <string>] [-p] [-v <string>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

USAGE
  $ sfdx tools:apex:test:run [name=value...] [-e <string>] [-l <string>] [-t <number>] [-n <string>] [-p] [-v <string>] 
  [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel 
  trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

OPTIONS
  -e, --expath=expath                                                               Path For The Exemption List
  -l, --level=level                                                                 Test Levels

  -n, --classnames=classnames                                                       Classnames you're running if it
                                                                                    isn't one of the Log Levels

  -p, --parallel                                                                    Pass the flag to run tests in
                                                                                    parallel mode in your Org

  -t, --retrytime=retrytime                                                         Ms to wait for a class before it is
                                                                                    retried

  -u, --targetusername=targetusername                                               username or alias for the target
                                                                                    org; overrides default target org

  -v, --targetdevhubusername=targetdevhubusername                                   username or alias for the dev hub
                                                                                    org; overrides default dev hub org

  --apiversion=apiversion                                                           override the api version used for
                                                                                    api requests made by this command

  --json                                                                            format output as json

  --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)  [default: warn] logging level for
                                                                                    this command invocation

  --verbose                                                                         emit additional command output to
                                                                                    stdout

EXAMPLE
  $ sfdx tools:apex:test:run -e <Path to exemption file> -t <retry time>
     
          This runs tests in serial/parallel mode - while aborting any ApexClasses that have been stuck in a Loop (A 
  Known platform bug), and updates values on ApexTestResult. 
          Also Saves Junits to /tests, so you can process them

See code: lib\commands\tools\apex\test\run.js

sfdx tools:repo:deploy [name=value...] -t <string> -b <string> [-s] [-w <string>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

USAGE
  $ sfdx tools:repo:deploy [name=value...] -t <string> -b <string> [-s] [-w <string>] [-u <string>] [--apiversion 
  <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

OPTIONS
  -b, --cbranch=cbranch                                                             (required) Current branch

  -s, --settings                                                                    Try To deploy settings to org first
                                                                                    (If found)

  -t, --tbranch=tbranch                                                             (required) Target Branch to compare
                                                                                    to

  -u, --targetusername=targetusername                                               username or alias for the target
                                                                                    org; overrides default target org

  -w, --workspace=workspace                                                         workspace where you have the
                                                                                    components stored

  --apiversion=apiversion                                                           override the api version used for
                                                                                    api requests made by this command

  --json                                                                            format output as json

  --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)  [default: warn] logging level for
                                                                                    this command invocation

  --verbose                                                                         emit additional command output to
                                                                                    stdout

EXAMPLE
  $ sfdx tools:repo:deploy -t "origin/CQA" -b "origin/xyzRelease" -s -u orgName
        
           Deploys the difference between two branches to an org
           1) Tries to Deploy any modified settings first.
           2) If successful, Deploys the rest of the source to the org
           3) Creates a list of deployed source and adds it to a json file, for reference

See code: lib\commands\tools\repo\deploy.js

sfdx tools:apex:test:run [name=value...] [-e <string>] [-l <string>] [-t <number>] [-n <string>] [-p] [-v <string>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

USAGE
  $ sfdx tools:apex:test:run [name=value...] [-e <string>] [-l <string>] [-t <number>] [-n <string>] [-p] [-v <string>] 
  [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel 
  trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

OPTIONS
  -e, --expath=expath                                                               Path For The Exemption List
  -l, --level=level                                                                 Test Levels

  -n, --classnames=classnames                                                       Classnames you're running if it
                                                                                    isn't one of the Log Levels

  -p, --parallel                                                                    Pass the flag to run tests in
                                                                                    parallel mode in your Org

  -t, --retrytime=retrytime                                                         Ms to wait for a class before it is
                                                                                    retried

  -u, --targetusername=targetusername                                               username or alias for the target
                                                                                    org; overrides default target org

  -v, --targetdevhubusername=targetdevhubusername                                   username or alias for the dev hub
                                                                                    org; overrides default dev hub org

  --apiversion=apiversion                                                           override the api version used for
                                                                                    api requests made by this command

  --json                                                                            format output as json

  --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)  [default: warn] logging level for
                                                                                    this command invocation

  --verbose                                                                         emit additional command output to
                                                                                    stdout

EXAMPLE
  $ sfdx tools:apex:test:run -e <Path to exemption file> -t <retry time> 
          This runs tests in serial/parallel mode - while aborting any ApexClasses that have been stuck in a Loop (A 
  Known platform bug), and updates values on ApexTestResult. Also Saves Junits to /tests

See code: lib\commands\tools\apex\test\run.js

sftools's People

Stargazers

Lukasz Hanusik avatar David Giraldo avatar

Watchers

Kanishka Nambiar avatar

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.