Commit Graph

230 Commits

Author SHA1 Message Date
Justin Kotalik ce2a5adb10 Use 10.0.15063.0 for Windows SDK 2018-03-08 12:10:29 -08:00
Justin Kotalik ad82bd31d8
Fix argument parsing for hostfxr, add native unit tests. (#635) 2018-03-08 11:53:12 -08:00
Justin Kotalik 00b1948937
Adds websocket feature detection, test cleanup. (#624) 2018-03-08 09:52:45 -08:00
Justin Kotalik 53360e0165
Disable SynchronousReadAndWriteTest (#630) 2018-03-06 16:58:34 -08:00
Justin Kotalik 4e8a9d2493
Move reading and writing of Pipelines to a single loop; Cancel Read every time we write. (#582) 2018-03-04 19:52:41 -08:00
Justin Kotalik 21b1febf2b
Adds environment variable feature for inprocess (#583) 2018-02-21 12:36:39 -08:00
Justin Kotalik babac2c795
Update tests to use test fixture (#571) 2018-01-29 17:48:11 -08:00
Nate McMaster 011cf720e6 Add IServerVariablesFeature
Enables fetching variables directly from IIS when using in-process
hosting. This is not available for out-of-process hosting.

Other changes:
 - Update tests to only run if IIS Express has been updated to support
 the new schema for hostingModel
 - Add a simpler test fixture for in-proc testing
2018-01-29 12:51:26 -08:00
Justin Kotalik ab7ec622ef
Make paths absolute for in-process, fix relative path check (#513) 2018-01-17 16:43:49 -08:00
Justin Kotalik c0761df411
Disables Functional tests due to status code 400 issues (#505) 2018-01-04 12:41:27 -08:00
Justin Kotalik 5d8670243c
Use location of aspnetcore.dll rather than the activating process. (#500) 2018-01-03 11:49:43 -08:00
Justin Kotalik 407f55841b
Disables tests (#499) 2017-12-29 18:05:17 -08:00
Justin Kotalik b70191fb82 Specify configuration for functional tests 2017-12-29 14:07:47 -08:00
Justin Kotalik 3f31706743 Resolve internal package reference issue 2017-12-29 12:48:01 -08:00
Justin Kotalik 3d17a40c0d Removing other test projects 2017-12-29 12:48:00 -08:00
Justin Kotalik 90d5f124b6 remove tests from ANCM as cyclic dependencies 2017-12-20 18:02:27 -08:00
Justin Kotalik b68d76417d removes .all package 2017-12-20 17:37:25 -08:00
ASP.NET CI fa9d7a7e8c Update dependencies.props
[auto-updated: dependencies]
2017-12-20 13:46:28 -08:00
BrennanConroy 2cf020103a Update to new corefx packages (#486) 2017-12-20 13:46:27 -08:00
pan-wang 30bbd87d81 Panwang/refactor (#277)
* Init check in for refactoring

* clean up to make app_offline work

* update loadassembly and build

* add configpath to aspnetcore_config to make recycle work

* Adds in process component to refactor (#249)

* outprocess first checkin (still missing marjor components)

* Adds In-Process support for shimmed module. (#257)

* Init check in for refactoring

* clean up to make app_offline work

* update loadassembly and build

* add configpath to aspnetcore_config to make recycle work

* Adds in process component to refactor (#249)

* outprocess first checkin (still missing marjor components)

* Adds In-Process support for shimmed module. (#257)

* load from bin start and catch unhandled exception

* Fixes request handler vcxproj

* Adds request handler to nuget package

* build issues

* outofprocess refactoring

* adding logging support

* enforce Warning As Error for build and enable process recycle for outofprocess

* fix AV for win32 build and update build flags

* Fixed m_srwLock lock issue

* remove dealock in loadmanagedapp and remove UseMFC

* Readd lost exception catching

* nuget package issue and status code

* fixing warnings

* Adds Headers

* removing web sockets exe for now

* remove flags

* nuspec stuff

* spelling

* only look in inetsvr for now (or same folder)

* rename method

* terminte thread before closing the handle to it

* couple changes related with AV

* null check and Kill thread for in process if dotnet timed out

* fix recursive lock issue reported by appverifier

* client disconnect support AV fix

* flow 502.5 process start failure error page

* Feedback from inperson code review
2017-12-20 13:46:27 -08:00
jhkimnew 9a1cc4ba1c clean up test framework utility functions (#273) 2017-12-19 18:40:11 -08:00
Justin Kotalik 8949f49637 merged 2017-12-07 18:55:29 -08:00
Ryan Brandenburg 34e3f3debc Update build configuration (#237) 2017-11-16 16:00:12 -08:00
Justin Kotalik a629725c7a
Revert "Disable failing tests (#473)" (#478) 2017-11-16 11:07:16 -08:00
Pranav K 3e277c8dd9 Update samples and tests to target netcoreapp2.1 2017-11-14 10:47:03 -08:00
Pavel Krymets adec0c6fbc
Disable failing tests (#473) 2017-11-13 10:56:22 -08:00
Justin Kotalik 552163ab77
Adds windows Auth support (#471) 2017-11-10 17:02:31 -08:00
jhkimnew bd18430428
Added StartupWithIStartupFilter (#236)
Added StartupWithIStartupFilter
2017-11-07 16:43:23 -08:00
Justin Kotalik 89f6f16ba5
Disable tests for continuous integration. (#234) 2017-11-07 14:25:06 -08:00
Justin Kotalik 9c065bf107
Remove header serialization in favor of setting IIS response directly. (#465) 2017-11-06 20:28:40 -08:00
jhkimnew 13312109ff
Test: Added a new MiddleWare to test the Gracefulshutdown message (#233)
Added TestMiddleWare to handle the Gracefulshutdown message instead of IISMiddleware
2017-11-06 13:47:59 -08:00
David Fowler 08186bb198
Use ipv4 when binding to ANCM port (#470)
- Today we use localhost which binds to both the ipv4 and ipv6 addresses.
ANCM never communicates over ipv6 so it's pointless. This should also properly crash
the process if the ipv4 address fails to bind (which we've seen reports in real applications for).
2017-11-03 10:24:41 -07:00
jhkimnew 483e0e9491
Upgrade xunit (#231) 2017-11-02 17:30:18 -07:00
jhkimnew 192a403b9a
Jhkim/fix testcodeissues (#229)
Fix test issue of incorrect usage of string comparison for testFlags
2017-11-01 17:31:38 -07:00
Nate McMaster bcc10d3012 Pin tool and package versions to make builds more repeatable
Part of aspnet/Universe#575
2017-11-01 14:59:02 -07:00
jhkimnew 02cffd16ec Jhkim/refactoring test (#176)
Cleans up IIS initialization testing framework
2017-10-19 12:15:24 -07:00
Justin Kotalik f91a941f8d Moves in-process to UseIISIntegration, removes Server.IIS namespace (#443) 2017-10-06 09:52:42 -07:00
Justin Kotalik 9dc69fe361 Adds support for ANCM in process (#425) 2017-10-02 16:01:46 -07:00
jhkimnew df673f631c Disable tests (#175) 2017-09-29 16:35:16 -07:00
jhkimnew 890e49e539 ANCM Test Refactoring: Initial check-in to fix the build issue on AspNetCI (#172)
* Initial check-in to fix the build issue on AspNetCI

* Updated with Jimmy's feedbacks
2017-09-29 14:49:12 -07:00
Justin Kotalik f130330db8 Updating Xunit and dotnet versions (#143) 2017-09-25 15:10:31 -07:00
jhkimnew 0120dae36b Jhkim/updatetest (#155)
* Added new test scenarios for websocket

* Fixed test issues

* Fixed test issues
2017-09-13 14:32:53 -07:00
jhkimnew c5f59e06c3 Added new test scenarios for websocket (#153) 2017-09-12 11:39:55 -07:00
Nate McMaster 1297798546 Use PackageLineup to manage PackageReference versions 2017-08-29 11:38:56 -07:00
Nate McMaster 5cf936d3cd Use Directory.Build.props/targets 2017-08-29 11:36:17 -07:00
Nate McMaster d15129110e Ensure .NET Core 1.0.5 is installed 2017-08-24 13:07:05 -07:00
Nate McMaster 7908015a3d Upgrade to xunit 2.3.0-beta4 2017-08-22 16:49:36 -07:00
Nate McMaster 24f09551d9 Remove usage of PackagePublisher 2017-07-28 17:17:26 -07:00
Nate McMaster a8802b2d2c Fix versions in the test project so restore works 2017-07-28 09:52:21 -07:00
Nate McMaster 42853bcca1 Update bootstrapper to use the compiled version of KoreBuild 2017-07-27 15:03:42 -07:00