Skip to content

Commit

Permalink
Add a test and run in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
benmatselby committed Oct 15, 2023
1 parent 82e5163 commit 439b36c
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on: [pull_request]

jobs:
run-tests:
strategy:
fail-fast: false
matrix:
st-version: [4]
# st-version: [3, 4]
# os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: SublimeText/UnitTesting/actions/setup@v1
with:
# Details: https://github.com/SublimeText/UnitTesting/blob/master/actions/setup/action.yaml#L19
package-name: Phpcs
sublime-text-version: ${{ matrix.st-version }}
- uses: SublimeText/UnitTesting/actions/run-tests@v1
30 changes: 30 additions & 0 deletions tests/test_phpcs.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import os
import re
import sys
import sublime
from unittest import TestCase


from Phpcs.phpcs import Sniffer


class TestDiffViewInternalFunctions(TestCase):
def test_we_can_build_up_the_correct_executable_string_when_we_prefix(self):
php_path = "/bin/php"
s = sublime.load_settings("phpcs.sublime-settings")

s.set("phpcs_php_prefix_path", php_path)
s.set("phpcs_commands_to_php_prefix", "Sniffer")

args = Sniffer().get_executable_args()
self.assertIn(php_path, args)

def test_we_can_build_up_the_correct_executable_string_when_we_dont_prefix(self):
s = sublime.load_settings("phpcs.sublime-settings")

s.set("phpcs_php_prefix_path", "/bin/php")
s.set("phpcs_commands_to_php_prefix", "")
s.set("phpcs_executable_path", "")

args = Sniffer().get_executable_args()
self.assertIn("phpcs", args)

0 comments on commit 439b36c

Please sign in to comment.