Skip to content

Commit

Permalink
first WebSocket test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Janczuk authored and Tomasz Janczuk committed Sep 11, 2012
1 parent 488a3b7 commit c63e3c7
Show file tree
Hide file tree
Showing 35 changed files with 2,330 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/iisnode/cnodehttpstoredcontext.cpp
Expand Up @@ -97,6 +97,10 @@ HANDLE CNodeHttpStoredContext::GetPipe()
void CNodeHttpStoredContext::SetPipe(HANDLE pipe)
{
this->pipe = pipe;
if (NULL != this->upgradeContext)
{
this->upgradeContext->SetPipe(pipe);
}
}

DWORD CNodeHttpStoredContext::GetConnectionRetryCount()
Expand Down
3 changes: 3 additions & 0 deletions src/iisnode/iisnode.vcxproj
Expand Up @@ -264,6 +264,7 @@ copy /y $(ProjectDir)\..\config\* $(ProjectDir)\..\..\build\$(Configuration)\$(P
<None Include="..\..\test\functional\tests\124_node_config_override.js" />
<None Include="..\..\test\functional\tests\125_node_config_autoupdate.js" />
<None Include="..\..\test\functional\tests\126_node_config_syntax.js" />
<None Include="..\..\test\functional\tests\130_websocket_onetwothree.js" />
<None Include="..\..\test\functional\tests\200_samples.bat" />
<None Include="..\..\test\functional\tests\node_modules\iisnodeassert.js" />
<None Include="..\..\test\functional\tests\parts\106_autoupdate_first.js" />
Expand Down Expand Up @@ -332,6 +333,8 @@ copy /y $(ProjectDir)\..\config\* $(ProjectDir)\..\..\build\$(Configuration)\$(P
<None Include="..\..\test\functional\www\126_node_config_syntax\.gitignore" />
<None Include="..\..\test\functional\www\126_node_config_syntax\hello.js" />
<None Include="..\..\test\functional\www\126_node_config_syntax\web.config" />
<None Include="..\..\test\functional\www\130_websocket_onetwothree\server.js" />
<None Include="..\..\test\functional\www\130_websocket_onetwothree\web.config" />
<None Include="..\..\test\performance\client.bat" />
<None Include="..\..\test\performance\localRun.bat" />
<None Include="..\..\test\performance\readme.txt" />
Expand Down
12 changes: 12 additions & 0 deletions src/iisnode/iisnode.vcxproj.filters
Expand Up @@ -147,6 +147,9 @@
<Filter Include="Tests\functional\www\126_node_config_syntax">
<UniqueIdentifier>{11747cf2-9384-4591-992e-4bc85c6fe7c8}</UniqueIdentifier>
</Filter>
<Filter Include="Tests\functional\www\130_websocket_onetwothree">
<UniqueIdentifier>{3ed37931-60f3-4898-98ac-01d5b0b19b07}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
Expand Down Expand Up @@ -672,6 +675,15 @@
<None Include="..\config\iisnode_dev_x86_on_x86.xml">
<Filter>Config</Filter>
</None>
<None Include="..\..\test\functional\www\130_websocket_onetwothree\server.js">
<Filter>Tests\functional\www\130_websocket_onetwothree</Filter>
</None>
<None Include="..\..\test\functional\www\130_websocket_onetwothree\web.config">
<Filter>Tests\functional\www\130_websocket_onetwothree</Filter>
</None>
<None Include="..\..\test\functional\tests\130_websocket_onetwothree.js">
<Filter>Tests\functional\tests</Filter>
</None>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="iisnode.rc" />
Expand Down
57 changes: 57 additions & 0 deletions test/functional/node_modules/faye-websocket/CHANGELOG.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

248 changes: 248 additions & 0 deletions test/functional/node_modules/faye-websocket/README.markdown

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c63e3c7

Please sign in to comment.