generated from Kentico/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI support and dotnet format check
- Loading branch information
michaljakubis
committed
Jul 4, 2024
1 parent
4c2ef44
commit f5c0cba
Showing
1,424 changed files
with
112,242 additions
and
111,977 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,76 @@ | ||
# For more information do to https://github.com/Kentico/Home/wiki/CI-and-Automation-Guidelines | ||
|
||
name: "Build" # Represents the name of the whole action. | ||
on: # Specifies the section where we describe our build triggers. | ||
push: # The action runs with push. | ||
pull_request: # The action runs with a pull request. | ||
schedule: # Specifies the section where we describe the schedule of running the action. | ||
- cron: '0 18 * * 1' # The CRON expression describes when to run the action. | ||
jobs: # Specifies the section where we describe our jobs. | ||
Build: # Specific job section. | ||
runs-on: ubuntu-latest # Describes the environment. | ||
steps: # Specifies the section where we describe the job's steps. | ||
- name: Output some string | ||
run: echo "Set some actual CI steps" | ||
name: "CI: Build and Test" | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- "**.cs" | ||
- "**.tsx" | ||
- "**.js" | ||
- "**.csproj" | ||
- "**.props" | ||
- "**.targets" | ||
- "**.sln" | ||
pull_request: | ||
branches: [main] | ||
paths: | ||
- "**.cs" | ||
- "**.cshtml" | ||
- "**.tsx" | ||
- "**.js" | ||
- "**.json" | ||
- "**.csproj" | ||
- "**.props" | ||
- "**.targets" | ||
- "**.sln" | ||
|
||
jobs: | ||
dotnet-format: | ||
name: .Net Format Check | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Run dotnet format | ||
run: dotnet format --exclude ./examples/** --verify-no-changes | ||
|
||
build_and_test: | ||
name: Build and Test | ||
runs-on: ubuntu-latest | ||
needs: dotnet-format | ||
defaults: | ||
run: | ||
shell: pwsh | ||
|
||
env: | ||
ASPNETCORE_ENVIRONMENT: CI | ||
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | ||
DOTNET_NOLOGO: 1 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
global-json-file: global.json | ||
|
||
- name: Install dependencies | ||
run: | | ||
dotnet restore ` | ||
--locked-mode | ||
- name: Build Solution | ||
run: | | ||
dotnet build ` | ||
--configuration Release ` | ||
--no-restore | ||
- name: Test Solution | ||
run: | | ||
dotnet test ` | ||
--configuration Release ` | ||
--no-build ` | ||
--no-restore |
149 changes: 76 additions & 73 deletions
149
KVA/Migration.Toolkit.Source/Auxiliary/NodeXmlAdapter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,76 @@ | ||
namespace Migration.Toolkit.Source.Auxiliary; | ||
|
||
using System; | ||
using System.Xml.Linq; | ||
using Migration.Toolkit.Common; | ||
using Migration.Toolkit.Common.Enumerations; | ||
|
||
internal class NodeXmlAdapter { | ||
private readonly XElement _xClass; | ||
|
||
public bool ParsingSuccessful { get; } | ||
|
||
public NodeXmlAdapter(string xml) { | ||
var xDoc = XDocument.Parse(xml); | ||
if (xDoc.Root?.FirstNode is XElement dClass) | ||
{ | ||
_xClass = dClass; | ||
ParsingSuccessful = true; | ||
} | ||
else | ||
{ | ||
_xClass = null!; | ||
ParsingSuccessful = false; | ||
} | ||
} | ||
|
||
public string? GetValue(string columnName) { | ||
return _xClass.Element(columnName)?.Value; | ||
} | ||
|
||
public bool HasValueSet(string columnName) | ||
{ | ||
return _xClass.Element(columnName) != null; | ||
} | ||
|
||
public int? NodeID => _xClass.Element(NodeXmlColumns.NODE_ID)?.Value<int>(); | ||
public string? NodeAliasPath => _xClass.Element(NodeXmlColumns.NODE_ALIAS_PATH)?.Value; | ||
public string? NodeName => _xClass.Element(NodeXmlColumns.NODE_NAME)?.Value; | ||
public string? NodeAlias => _xClass.Element(NodeXmlColumns.NODE_ALIAS)?.Value; | ||
public int? NodeClassID => _xClass.Element(NodeXmlColumns.NODE_CLASS_ID)?.Value<int>(); | ||
public int? NodeParentID => _xClass.Element(NodeXmlColumns.NODE_PARENT_ID)?.Value<int>(); | ||
public int? NodeLevel => _xClass.Element(NodeXmlColumns.NODE_LEVEL)?.Value<int>(); | ||
public int? NodeSiteID => _xClass.Element(NodeXmlColumns.NODE_SITE_ID)?.Value<int>(); | ||
public Guid? NodeGUID => _xClass.Element(NodeXmlColumns.NODE_GUID)?.Value<Guid>(); | ||
public int? NodeOrder => _xClass.Element(NodeXmlColumns.NODE_ORDER)?.Value<int>(); | ||
public int? NodeOwner => _xClass.Element(NodeXmlColumns.NODE_OWNER)?.Value<int>(); | ||
public bool? NodeHasChildren => _xClass.Element(NodeXmlColumns.NODE_HAS_CHILDREN)?.ValueAsBool(); | ||
public bool? NodeHasLinks => _xClass.Element(NodeXmlColumns.NODE_HAS_LINKS)?.ValueAsBool(); | ||
public int? NodeOriginalNodeID => _xClass.Element(NodeXmlColumns.NODE_ORIGINAL_NODE_ID)?.Value<int>(); | ||
public bool? NodeIsPage => _xClass.Element(NodeXmlColumns.NODE_IS_PAGE)?.ValueAsBool(); | ||
public bool? NodeIsSecured => _xClass.Element(NodeXmlColumns.NODE_IS_SECURED)?.ValueAsBool(); | ||
public int? DocumentID => _xClass.Element(NodeXmlColumns.DOCUMENT_ID)?.Value<int>(); | ||
public string? DocumentName => _xClass.Element(NodeXmlColumns.DOCUMENT_NAME)?.Value; | ||
public DateTime? DocumentModifiedWhen => _xClass.Element(NodeXmlColumns.DOCUMENT_MODIFIED_WHEN)?.Value<DateTime>(); | ||
public int? DocumentModifiedByUserID => _xClass.Element(NodeXmlColumns.DOCUMENT_MODIFIED_BY_USER_ID)?.Value<int>(); | ||
public int? DocumentCreatedByUserID => _xClass.Element(NodeXmlColumns.DOCUMENT_CREATED_BY_USER_ID)?.Value<int>(); | ||
public DateTime? DocumentCreatedWhen => _xClass.Element(NodeXmlColumns.DOCUMENT_CREATED_WHEN)?.Value<DateTime>(); | ||
public int? DocumentCheckedOutVersionHistoryID => _xClass.Element(NodeXmlColumns.DOCUMENT_CHECKED_OUT_VERSION_HISTORY_ID)?.Value<int>(); | ||
public int? DocumentPublishedVersionHistoryID => _xClass.Element(NodeXmlColumns.DOCUMENT_PUBLISHED_VERSION_HISTORY_ID)?.Value<int>(); | ||
public int? DocumentWorkflowStepID => _xClass.Element(NodeXmlColumns.DOCUMENT_WORKFLOW_STEP_ID)?.Value<int>(); | ||
public string? DocumentCulture => _xClass.Element(NodeXmlColumns.DOCUMENT_CULTURE)?.Value; | ||
public int? DocumentNodeID => _xClass.Element(NodeXmlColumns.DOCUMENT_NODE_ID)?.Value<int>(); | ||
public string? DocumentContent => _xClass.Element(NodeXmlColumns.DOCUMENT_CONTENT)?.Value; | ||
public string? DocumentLastVersionNumber => _xClass.Element(NodeXmlColumns.DOCUMENT_LAST_VERSION_NUMBER)?.Value; | ||
public bool? DocumentIsArchived => _xClass.Element(NodeXmlColumns.DOCUMENT_IS_ARCHIVED)?.ValueAsBool(); | ||
public Guid? DocumentGUID => _xClass.Element(NodeXmlColumns.DOCUMENT_GUID)?.Value<Guid>(); | ||
public Guid? DocumentWorkflowCycleGUID => _xClass.Element(NodeXmlColumns.DOCUMENT_WORKFLOW_CYCLE_GUID)?.Value<Guid>(); | ||
public bool? DocumentCanBePublished => _xClass.Element(NodeXmlColumns.DOCUMENT_CAN_BE_PUBLISHED)?.ValueAsBool(); | ||
public string? DocumentPageBuilderWidgets => _xClass.Element(NodeXmlColumns.DOCUMENT_PAGE_BUILDER_WIDGETS)?.Value; | ||
public string? ClassName => _xClass.Element(NodeXmlColumns.CLASS_NAME)?.Value; | ||
|
||
public string? DocumentPageTemplateConfiguration => _xClass.Element(NodeXmlColumns.DOCUMENT_PAGE_TEMPLATE_CONFIGURATION)?.Value; | ||
} | ||
namespace Migration.Toolkit.Source.Auxiliary; | ||
|
||
using System; | ||
using System.Xml.Linq; | ||
using Migration.Toolkit.Common; | ||
using Migration.Toolkit.Common.Enumerations; | ||
|
||
internal class NodeXmlAdapter | ||
{ | ||
private readonly XElement _xClass; | ||
|
||
public bool ParsingSuccessful { get; } | ||
|
||
public NodeXmlAdapter(string xml) | ||
{ | ||
var xDoc = XDocument.Parse(xml); | ||
if (xDoc.Root?.FirstNode is XElement dClass) | ||
{ | ||
_xClass = dClass; | ||
ParsingSuccessful = true; | ||
} | ||
else | ||
{ | ||
_xClass = null!; | ||
ParsingSuccessful = false; | ||
} | ||
} | ||
|
||
public string? GetValue(string columnName) | ||
{ | ||
return _xClass.Element(columnName)?.Value; | ||
} | ||
|
||
public bool HasValueSet(string columnName) | ||
{ | ||
return _xClass.Element(columnName) != null; | ||
} | ||
|
||
public int? NodeID => _xClass.Element(NodeXmlColumns.NODE_ID)?.Value<int>(); | ||
public string? NodeAliasPath => _xClass.Element(NodeXmlColumns.NODE_ALIAS_PATH)?.Value; | ||
public string? NodeName => _xClass.Element(NodeXmlColumns.NODE_NAME)?.Value; | ||
public string? NodeAlias => _xClass.Element(NodeXmlColumns.NODE_ALIAS)?.Value; | ||
public int? NodeClassID => _xClass.Element(NodeXmlColumns.NODE_CLASS_ID)?.Value<int>(); | ||
public int? NodeParentID => _xClass.Element(NodeXmlColumns.NODE_PARENT_ID)?.Value<int>(); | ||
public int? NodeLevel => _xClass.Element(NodeXmlColumns.NODE_LEVEL)?.Value<int>(); | ||
public int? NodeSiteID => _xClass.Element(NodeXmlColumns.NODE_SITE_ID)?.Value<int>(); | ||
public Guid? NodeGUID => _xClass.Element(NodeXmlColumns.NODE_GUID)?.Value<Guid>(); | ||
public int? NodeOrder => _xClass.Element(NodeXmlColumns.NODE_ORDER)?.Value<int>(); | ||
public int? NodeOwner => _xClass.Element(NodeXmlColumns.NODE_OWNER)?.Value<int>(); | ||
public bool? NodeHasChildren => _xClass.Element(NodeXmlColumns.NODE_HAS_CHILDREN)?.ValueAsBool(); | ||
public bool? NodeHasLinks => _xClass.Element(NodeXmlColumns.NODE_HAS_LINKS)?.ValueAsBool(); | ||
public int? NodeOriginalNodeID => _xClass.Element(NodeXmlColumns.NODE_ORIGINAL_NODE_ID)?.Value<int>(); | ||
public bool? NodeIsPage => _xClass.Element(NodeXmlColumns.NODE_IS_PAGE)?.ValueAsBool(); | ||
public bool? NodeIsSecured => _xClass.Element(NodeXmlColumns.NODE_IS_SECURED)?.ValueAsBool(); | ||
public int? DocumentID => _xClass.Element(NodeXmlColumns.DOCUMENT_ID)?.Value<int>(); | ||
public string? DocumentName => _xClass.Element(NodeXmlColumns.DOCUMENT_NAME)?.Value; | ||
public DateTime? DocumentModifiedWhen => _xClass.Element(NodeXmlColumns.DOCUMENT_MODIFIED_WHEN)?.Value<DateTime>(); | ||
public int? DocumentModifiedByUserID => _xClass.Element(NodeXmlColumns.DOCUMENT_MODIFIED_BY_USER_ID)?.Value<int>(); | ||
public int? DocumentCreatedByUserID => _xClass.Element(NodeXmlColumns.DOCUMENT_CREATED_BY_USER_ID)?.Value<int>(); | ||
public DateTime? DocumentCreatedWhen => _xClass.Element(NodeXmlColumns.DOCUMENT_CREATED_WHEN)?.Value<DateTime>(); | ||
public int? DocumentCheckedOutVersionHistoryID => _xClass.Element(NodeXmlColumns.DOCUMENT_CHECKED_OUT_VERSION_HISTORY_ID)?.Value<int>(); | ||
public int? DocumentPublishedVersionHistoryID => _xClass.Element(NodeXmlColumns.DOCUMENT_PUBLISHED_VERSION_HISTORY_ID)?.Value<int>(); | ||
public int? DocumentWorkflowStepID => _xClass.Element(NodeXmlColumns.DOCUMENT_WORKFLOW_STEP_ID)?.Value<int>(); | ||
public string? DocumentCulture => _xClass.Element(NodeXmlColumns.DOCUMENT_CULTURE)?.Value; | ||
public int? DocumentNodeID => _xClass.Element(NodeXmlColumns.DOCUMENT_NODE_ID)?.Value<int>(); | ||
public string? DocumentContent => _xClass.Element(NodeXmlColumns.DOCUMENT_CONTENT)?.Value; | ||
public string? DocumentLastVersionNumber => _xClass.Element(NodeXmlColumns.DOCUMENT_LAST_VERSION_NUMBER)?.Value; | ||
public bool? DocumentIsArchived => _xClass.Element(NodeXmlColumns.DOCUMENT_IS_ARCHIVED)?.ValueAsBool(); | ||
public Guid? DocumentGUID => _xClass.Element(NodeXmlColumns.DOCUMENT_GUID)?.Value<Guid>(); | ||
public Guid? DocumentWorkflowCycleGUID => _xClass.Element(NodeXmlColumns.DOCUMENT_WORKFLOW_CYCLE_GUID)?.Value<Guid>(); | ||
public bool? DocumentCanBePublished => _xClass.Element(NodeXmlColumns.DOCUMENT_CAN_BE_PUBLISHED)?.ValueAsBool(); | ||
public string? DocumentPageBuilderWidgets => _xClass.Element(NodeXmlColumns.DOCUMENT_PAGE_BUILDER_WIDGETS)?.Value; | ||
public string? ClassName => _xClass.Element(NodeXmlColumns.CLASS_NAME)?.Value; | ||
|
||
public string? DocumentPageTemplateConfiguration => _xClass.Element(NodeXmlColumns.DOCUMENT_PAGE_TEMPLATE_CONFIGURATION)?.Value; | ||
} |
Oops, something went wrong.